blob: 11b8144bedfc6edc1bc5fae011f8a0e2d1116d2e [file] [log] [blame]
Dan Willemsen2e1591b2016-07-12 17:20:18 -07001//
2// Copyright (C) 2014 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: "libbacktrace_common",
19
20 cflags: [
21 "-Wall",
22 "-Werror",
23 ],
Dan Willemsen2e1591b2016-07-12 17:20:18 -070024
Dan Willemsen2e1591b2016-07-12 17:20:18 -070025 target: {
Dan Willemsen2e1591b2016-07-12 17:20:18 -070026 darwin: {
27 enabled: false,
28 },
29 },
30
31 multilib: {
32 lib32: {
33 suffix: "32",
34 },
35 lib64: {
36 suffix: "64",
37 },
Elliott Hughesdc699a22018-02-16 17:58:14 -080038 },
Dan Willemsen2e1591b2016-07-12 17:20:18 -070039}
40
41libbacktrace_sources = [
42 "Backtrace.cpp",
43 "BacktraceCurrent.cpp",
44 "BacktracePtrace.cpp",
45 "thread_utils.c",
46 "ThreadEntry.cpp",
Christopher Ferris6f3981c2017-07-27 09:29:18 -070047 "UnwindStack.cpp",
48 "UnwindStackMap.cpp",
Dan Willemsen2e1591b2016-07-12 17:20:18 -070049]
50
Vijay Venkatraman8f2c28d2017-04-11 11:22:43 -070051cc_library_headers {
52 name: "libbacktrace_headers",
Steven Moreland4ad9d512017-04-13 21:01:40 -070053 vendor_available: true,
Vijay Venkatraman8f2c28d2017-04-11 11:22:43 -070054 export_include_dirs: ["include"],
55}
56
Dan Willemsen2e1591b2016-07-12 17:20:18 -070057cc_library {
58 name: "libbacktrace",
Jiyong Parkb7d92c42017-08-23 13:25:21 +090059 vendor_available: false,
Justin Yun9ca92452017-07-31 15:41:10 +090060 vndk: {
61 enabled: true,
62 support_system_process: true,
63 },
Dan Willemsen2e1591b2016-07-12 17:20:18 -070064 defaults: ["libbacktrace_common"],
65 host_supported: true,
66
Josh Gaoe22701e2017-10-23 14:25:08 -070067 cflags: [
68 "-Wexit-time-destructors",
69 ],
70
Dan Willemsen2e1591b2016-07-12 17:20:18 -070071 srcs: [
72 "BacktraceMap.cpp",
73 ],
74
Vijay Venkatraman8f2c28d2017-04-11 11:22:43 -070075 export_include_dirs: ["include"],
76
Dan Willemsen2e1591b2016-07-12 17:20:18 -070077 target: {
78 darwin: {
79 enabled: true,
Christopher Tate69831122018-02-16 14:52:26 -080080 shared_libs: [
Elliott Hughesdc699a22018-02-16 17:58:14 -080081 "libbase",
82 ],
Dan Willemsen2e1591b2016-07-12 17:20:18 -070083 },
Dan Willemsenbdddcab2017-10-03 14:17:31 -070084 linux: {
Dan Willemsene0cd1e02017-03-15 15:23:36 -070085 srcs: libbacktrace_sources,
86
87 shared_libs: [
88 "libbase",
89 "liblog",
Christopher Ferris6f3981c2017-07-27 09:29:18 -070090 "libunwindstack",
Christopher Ferris0b06a592018-01-19 10:26:36 -080091 "libdexfile",
Dan Willemsene0cd1e02017-03-15 15:23:36 -070092 ],
93
94 static_libs: ["libcutils"],
Christopher Ferris0b06a592018-01-19 10:26:36 -080095
96 // libdexfile will eventually properly export headers, for now
97 // include these directly.
98 include_dirs: [
99 "art/runtime",
100 ],
101
Elliott Hughesdc699a22018-02-16 17:58:14 -0800102 header_libs: ["jni_headers"],
Dan Willemsene0cd1e02017-03-15 15:23:36 -0700103 },
Dan Willemsen2e1591b2016-07-12 17:20:18 -0700104 android: {
Dan Willemsenbdddcab2017-10-03 14:17:31 -0700105 static_libs: ["libasync_safe"],
Dan Willemsen2e1591b2016-07-12 17:20:18 -0700106 },
Christopher Ferris0b06a592018-01-19 10:26:36 -0800107 vendor: {
Christopher Ferrisd70ea5e2018-01-30 19:47:24 -0800108 cflags: ["-DNO_LIBDEXFILE_SUPPORT"],
Christopher Ferris0b06a592018-01-19 10:26:36 -0800109 exclude_shared_libs: ["libdexfile"],
Elliott Hughesdc699a22018-02-16 17:58:14 -0800110 },
Dan Willemsen2e1591b2016-07-12 17:20:18 -0700111 },
Christopher Ferris7d0aea92017-06-01 14:15:09 -0700112 whole_static_libs: ["libdemangle"],
Dan Willemsen2e1591b2016-07-12 17:20:18 -0700113}
114
115cc_library_shared {
116 name: "libbacktrace_test",
117 defaults: ["libbacktrace_common"],
118 host_supported: true,
119 strip: {
120 none: true,
121 },
122 cflags: ["-O0"],
Christopher Ferris5ea2c1f2017-03-23 14:55:01 -0700123 srcs: ["backtrace_testlib.cpp"],
Yabin Cui5d991bc2016-11-15 17:47:09 -0800124
Christopher Ferrisc8bec5a2017-12-11 17:44:33 -0800125 shared_libs: [
Elliott Hughesdc699a22018-02-16 17:58:14 -0800126 "libunwindstack",
Colin Crossda9bd592016-12-14 17:24:46 -0800127 ],
128}
129
130//-------------------------------------------------------------------------
131// The backtrace_test executable.
132//-------------------------------------------------------------------------
133cc_test {
134 name: "backtrace_test",
135 defaults: ["libbacktrace_common"],
136 host_supported: true,
137 srcs: [
138 "backtrace_offline_test.cpp",
139 "backtrace_test.cpp",
140 "GetPss.cpp",
141 "thread_utils.c",
142 ],
143
144 cflags: [
145 "-fno-builtin",
146 "-O0",
147 "-g",
148 ],
149
150 shared_libs: [
151 "libbacktrace_test",
152 "libbacktrace",
Christopher Ferris0b06a592018-01-19 10:26:36 -0800153 "libdexfile",
Colin Crossda9bd592016-12-14 17:24:46 -0800154 "libbase",
155 "libcutils",
156 "liblog",
Christopher Ferris6f3981c2017-07-27 09:29:18 -0700157 "libunwindstack",
Colin Crossda9bd592016-12-14 17:24:46 -0800158 ],
159
160 group_static_libs: true,
161
Colin Crossda9bd592016-12-14 17:24:46 -0800162 target: {
163 android: {
164 cflags: ["-DENABLE_PSS_TESTS"],
165 shared_libs: [
Colin Crossda9bd592016-12-14 17:24:46 -0800166 "libutils",
167 ],
168 },
Dan Willemsen48529332017-10-02 10:38:16 -0700169 linux_glibc: {
Colin Crossda9bd592016-12-14 17:24:46 -0800170 static_libs: ["libutils"],
171 },
172 },
Christopher Ferris458cc662017-08-28 16:31:18 -0700173
Christopher Ferris0b06a592018-01-19 10:26:36 -0800174 // libdexfile will eventually properly export headers, for now
175 // include these directly.
176 include_dirs: [
177 "art/runtime",
178 ],
179
Elliott Hughes40fdf3f2018-04-27 16:12:06 -0700180 test_suites: ["device-tests"],
Christopher Ferris458cc662017-08-28 16:31:18 -0700181 data: [
182 "testdata/arm/*",
183 "testdata/arm64/*",
184 "testdata/x86/*",
185 "testdata/x86_64/*",
186 ],
Elliott Hughes03d183a2018-05-03 10:06:45 -0700187 required: [
188 "libbacktrace_test",
189 ],
Colin Crossda9bd592016-12-14 17:24:46 -0800190}
Christopher Ferris60521c72017-08-18 15:10:53 -0700191
192cc_benchmark {
193 name: "backtrace_benchmarks",
194 defaults: ["libbacktrace_common"],
195
196 srcs: [
197 "backtrace_benchmarks.cpp",
Christopher Ferrise3286732017-12-07 17:41:18 -0800198 "backtrace_read_benchmarks.cpp",
Christopher Ferris60521c72017-08-18 15:10:53 -0700199 ],
200
201 shared_libs: [
202 "libbacktrace",
203 "libbase",
Josh Gaob9670bb2017-10-25 15:12:24 -0700204 "libunwindstack",
Christopher Ferris60521c72017-08-18 15:10:53 -0700205 ],
206}