blob: 3cd8ae0f6d29cf651ee56f347a6f76b9a5a1d623 [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,
69 defaults: ["oatdump-defaults"],
Colin Cross8dd90682016-09-08 16:43:27 -070070 target: {
71 darwin: {
72 enabled: false,
73 },
74 },
Roland Levillain7f07f552016-11-22 17:20:46 +000075 ldflags: [
76 // We need this because GC stress mode makes use of
77 // _Unwind_GetIP and _Unwind_Backtrace and the symbols are also
78 // defined in libgcc_eh.a(unwind-dw2.o)
79 // TODO: Having this is not ideal as it might obscure errors.
80 // Try to get rid of it.
81 "-z muldefs",
82 ],
Andreas Gampe11bf2652018-07-10 14:21:15 -070083 static_libs: art_static_dependencies,
84}
85
86art_cc_binary {
87 name: "oatdumps",
88 defaults: ["oatdumps-defaults"],
Colin Crossfe6064a2016-08-30 13:49:26 -070089 static_libs: [
90 "libart",
David Sehrfcbe15c2018-02-15 09:41:13 -080091 "libdexfile",
David Sehr82d046e2018-04-23 08:14:19 -070092 "libprofile",
David Sehr1f010162018-05-15 08:59:32 -070093 "libartbase",
Colin Crossfe6064a2016-08-30 13:49:26 -070094 "libart-compiler",
95 "libart-disassembler",
96 "libvixl-arm",
97 "libvixl-arm64",
Andreas Gampe11bf2652018-07-10 14:21:15 -070098 ],
Colin Crossfe6064a2016-08-30 13:49:26 -070099}
100
101art_cc_binary {
102 name: "oatdumpds",
103 defaults: [
104 "art_debug_defaults",
Andreas Gampe11bf2652018-07-10 14:21:15 -0700105 "oatdumps-defaults",
Colin Crossfe6064a2016-08-30 13:49:26 -0700106 ],
Colin Cross8dd90682016-09-08 16:43:27 -0700107 target: {
Pirama Arumuga Nainar6f5b4d22018-04-20 12:02:02 -0700108 linux_glibc_x86_64: {
109 use_clang_lld: true,
110 },
Colin Cross8dd90682016-09-08 16:43:27 -0700111 },
Colin Crossfe6064a2016-08-30 13:49:26 -0700112 static_libs: [
113 "libartd",
David Sehrfcbe15c2018-02-15 09:41:13 -0800114 "libdexfiled",
David Sehr82d046e2018-04-23 08:14:19 -0700115 "libprofiled",
David Sehr1f010162018-05-15 08:59:32 -0700116 "libartbased",
Colin Crossfe6064a2016-08-30 13:49:26 -0700117 "libartd-compiler",
118 "libartd-disassembler",
119 "libvixld-arm",
120 "libvixld-arm64",
Andreas Gampe11bf2652018-07-10 14:21:15 -0700121 ],
Colin Crossfe6064a2016-08-30 13:49:26 -0700122}
123
Colin Cross6e95dd52016-09-12 15:37:10 -0700124art_cc_test {
125 name: "art_oatdump_tests",
126 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700127 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700128 ],
Vladimir Marko1352f132017-04-28 15:28:29 +0100129 srcs: [
Vladimir Marko421087b2018-02-27 11:00:17 +0000130 "oatdump_app_test.cc",
Vladimir Marko1352f132017-04-28 15:28:29 +0100131 "oatdump_test.cc",
132 "oatdump_image_test.cc",
133 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700134}