blob: dfb20ba8ad7965e0081401a70581e35019a4da5c [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
27cc_library_headers {
28 name: "linker_reloc_bench_headers",
29 defaults: ["bionic_spawn_benchmark_targets"],
30 export_include_dirs: ["include"],
31}
32
33// TODO: This benchmark doesn't work with TradeFed/atest because it doesn't copy its test libraries
34// into the testcases/linker_reloc_bench directory. The obvious way to do that is to list each
35// library in the "data" property, but that doesn't work, because each library is listed as having a
36// "link:shared" variant (as opposed to "link:static"), whereas the cc_benchmark has no
37// "link:(shared/static)" variation. It appears that Soong needs to be fixed to make this benchmark
38// work with TradeFed/atest.
39
40cc_benchmark {
41 name: "linker-reloc-bench",
42
43 defaults: [
44 "bionic_spawn_benchmark_targets",
45 "linker_reloc_bench_all_libs",
46 ],
47
48 data: [":linker_reloc_bench_main"],
49 srcs: ["linker_reloc_bench.cpp"],
50
51 static_libs: [
52 "libbase",
53 "libbionic_spawn_benchmark",
54 ],
55}
56
57cc_defaults {
58 name: "linker_reloc_bench_binary",
59 defaults: ["bionic_spawn_benchmark_targets"],
60 header_libs: ["linker_reloc_bench_headers"],
61 stl: "none",
62 gtest: false,
63
64 compile_multilib: "both",
65 multilib: {
66 lib32: { suffix: "32" },
67 lib64: { suffix: "64" },
68 },
69}
70
71cc_defaults {
72 name: "linker_reloc_bench_library",
73 defaults: ["bionic_spawn_benchmark_targets"],
74 header_libs: ["linker_reloc_bench_headers"],
75 stl: "none",
76 gtest: false,
77 relative_install_path: "linker-reloc-bench",
78
79 static: {
80 enabled: false,
81 },
82}