blob: 5c8793bd546b84287f54fd9fcb26d0b7a973c6ea [file] [log] [blame]
Ryan Prichard41f19702019-12-23 13:21:42 -08001// Copyright (C) 2019 The Android Open Source Project
2// All rights reserved.
3//
4// Redistribution and use in source and binary forms, with or without
5// modification, are permitted provided that the following conditions
6// are met:
7// * Redistributions of source code must retain the above copyright
8// notice, this list of conditions and the following disclaimer.
9// * Redistributions in binary form must reproduce the above copyright
10// notice, this list of conditions and the following disclaimer in
11// the documentation and/or other materials provided with the
12// distribution.
13//
14// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
17// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
18// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
21// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22// AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
24// OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25// SUCH DAMAGE.
26
Bob Badouraa7d8352021-02-19 13:06:22 -080027package {
28 default_applicable_licenses: ["bionic_benchmarks_license"],
29}
30
Ryan Prichard41f19702019-12-23 13:21:42 -080031cc_library_headers {
32 name: "linker_reloc_bench_headers",
33 defaults: ["bionic_spawn_benchmark_targets"],
34 export_include_dirs: ["include"],
35}
36
37// TODO: This benchmark doesn't work with TradeFed/atest because it doesn't copy its test libraries
38// into the testcases/linker_reloc_bench directory. The obvious way to do that is to list each
39// library in the "data" property, but that doesn't work, because each library is listed as having a
40// "link:shared" variant (as opposed to "link:static"), whereas the cc_benchmark has no
41// "link:(shared/static)" variation. It appears that Soong needs to be fixed to make this benchmark
42// work with TradeFed/atest.
43
44cc_benchmark {
45 name: "linker-reloc-bench",
46
47 defaults: [
48 "bionic_spawn_benchmark_targets",
49 "linker_reloc_bench_all_libs",
50 ],
51
52 data: [":linker_reloc_bench_main"],
53 srcs: ["linker_reloc_bench.cpp"],
54
55 static_libs: [
56 "libbase",
57 "libbionic_spawn_benchmark",
Ryan Prichardf82e39f2020-01-15 19:58:27 -080058 "liblog",
Ryan Prichard41f19702019-12-23 13:21:42 -080059 ],
60}
61
62cc_defaults {
63 name: "linker_reloc_bench_binary",
64 defaults: ["bionic_spawn_benchmark_targets"],
65 header_libs: ["linker_reloc_bench_headers"],
66 stl: "none",
67 gtest: false,
68
69 compile_multilib: "both",
70 multilib: {
Elliott Hughes1eacc0e2024-01-19 19:05:36 +000071 lib32: {
72 suffix: "32",
73 },
74 lib64: {
75 suffix: "64",
76 },
Ryan Prichard41f19702019-12-23 13:21:42 -080077 },
78}
79
80cc_defaults {
81 name: "linker_reloc_bench_library",
82 defaults: ["bionic_spawn_benchmark_targets"],
83 header_libs: ["linker_reloc_bench_headers"],
84 stl: "none",
85 gtest: false,
86 relative_install_path: "linker-reloc-bench",
87
88 static: {
89 enabled: false,
90 },
91}