blob: 070449967c25b0481c664e323db783b4a3a39fd6 [file] [log] [blame]
Colin Crossfe6064a2016-08-30 13:49:26 -07001//
2// Copyright (C) 2011 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17cc_defaults {
18 name: "oatdump-defaults",
19 defaults: ["art_defaults"],
20 host_supported: true,
21 srcs: ["oatdump.cc"],
22 target: {
23 android: {
24 shared_libs: ["libcutils"],
25 },
26 },
Chih-Hung Hsieh238c9632018-05-08 10:22:52 -070027 // b/79417743, oatdump 32-bit tests failed with clang lld
28 use_clang_lld: false,
Andreas Gampe3157fc22017-08-23 09:43:46 -070029 header_libs: [
30 "art_cmdlineparser_headers",
31 ],
Colin Crossfe6064a2016-08-30 13:49:26 -070032}
33
34art_cc_binary {
35 name: "oatdump",
36 defaults: ["oatdump-defaults"],
37 shared_libs: [
38 "libart",
39 "libart-compiler",
40 "libart-disassembler",
David Sehr0225f8e2018-01-31 08:52:24 +000041 "libdexfile",
David Sehr1f010162018-05-15 08:59:32 -070042 "libartbase",
David Sehr82d046e2018-04-23 08:14:19 -070043 "libprofile",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070044 "libbase",
Colin Crossfe6064a2016-08-30 13:49:26 -070045 ],
46}
47
48art_cc_binary {
49 name: "oatdumpd",
50 defaults: [
51 "art_debug_defaults",
52 "oatdump-defaults",
53 ],
54 shared_libs: [
55 "libartd",
56 "libartd-compiler",
57 "libartd-disassembler",
David Sehrfcbe15c2018-02-15 09:41:13 -080058 "libdexfiled",
David Sehr1f010162018-05-15 08:59:32 -070059 "libartbased",
David Sehr82d046e2018-04-23 08:14:19 -070060 "libprofiled",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -070061 "libbase",
Colin Crossfe6064a2016-08-30 13:49:26 -070062 ],
63}
64
Andreas Gampe11bf2652018-07-10 14:21:15 -070065cc_defaults {
66 name: "oatdumps-defaults",
Colin Crossd2c20802016-09-19 12:57:18 -070067 device_supported: false,
Roland Levillain7f07f552016-11-22 17:20:46 +000068 static_executable: true,
Andreas Gampeec5ed062018-01-26 16:20:02 -080069 defaults: [
70 "oatdump-defaults",
71 ],
Colin Cross8dd90682016-09-08 16:43:27 -070072 target: {
73 darwin: {
74 enabled: false,
75 },
76 },
Roland Levillain7f07f552016-11-22 17:20:46 +000077 ldflags: [
78 // We need this because GC stress mode makes use of
79 // _Unwind_GetIP and _Unwind_Backtrace and the symbols are also
80 // defined in libgcc_eh.a(unwind-dw2.o)
81 // TODO: Having this is not ideal as it might obscure errors.
82 // Try to get rid of it.
83 "-z muldefs",
84 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -080085 static_libs: ["libsigchain_dummy"],
Andreas Gampe11bf2652018-07-10 14:21:15 -070086}
87
88art_cc_binary {
89 name: "oatdumps",
Andreas Gampeec5ed062018-01-26 16:20:02 -080090 defaults: [
91 "libart_static_defaults",
92 "libartbase_static_defaults",
93 "libdexfile_static_defaults",
94 "libprofile_static_defaults",
95 "libart-compiler_static_defaults",
96 "oatdumps-defaults",
97 ],
Colin Crossfe6064a2016-08-30 13:49:26 -070098 static_libs: [
Colin Crossfe6064a2016-08-30 13:49:26 -070099 "libart-disassembler",
100 "libvixl-arm",
101 "libvixl-arm64",
Andreas Gampe11bf2652018-07-10 14:21:15 -0700102 ],
Colin Crossfe6064a2016-08-30 13:49:26 -0700103}
104
105art_cc_binary {
106 name: "oatdumpds",
107 defaults: [
108 "art_debug_defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800109 "libartd_static_defaults",
110 "libartbased_static_defaults",
111 "libdexfiled_static_defaults",
112 "libprofiled_static_defaults",
113 "libartd-compiler_static_defaults",
Andreas Gampe11bf2652018-07-10 14:21:15 -0700114 "oatdumps-defaults",
Colin Crossfe6064a2016-08-30 13:49:26 -0700115 ],
Colin Cross8dd90682016-09-08 16:43:27 -0700116 target: {
Pirama Arumuga Nainar6f5b4d22018-04-20 12:02:02 -0700117 linux_glibc_x86_64: {
118 use_clang_lld: true,
119 },
Colin Cross8dd90682016-09-08 16:43:27 -0700120 },
Colin Crossfe6064a2016-08-30 13:49:26 -0700121 static_libs: [
Colin Crossfe6064a2016-08-30 13:49:26 -0700122 "libartd-disassembler",
123 "libvixld-arm",
124 "libvixld-arm64",
Andreas Gampe11bf2652018-07-10 14:21:15 -0700125 ],
Colin Crossfe6064a2016-08-30 13:49:26 -0700126}
127
Colin Cross6e95dd52016-09-12 15:37:10 -0700128art_cc_test {
129 name: "art_oatdump_tests",
130 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700131 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700132 ],
Vladimir Marko1352f132017-04-28 15:28:29 +0100133 srcs: [
Vladimir Marko421087b2018-02-27 11:00:17 +0000134 "oatdump_app_test.cc",
Vladimir Marko1352f132017-04-28 15:28:29 +0100135 "oatdump_test.cc",
136 "oatdump_image_test.cc",
137 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700138}