blob: 31837a2b747c16ef39b86df7d4db914839b3627f [file] [log] [blame]
Christopher Ferris723cf9b2017-01-19 20:08:48 -08001//
2// Copyright (C) 2017 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: "libunwindstack_flags",
19
20 host_supported: true,
21
22 cflags: [
23 "-Wall",
24 "-Werror",
25 "-Wextra",
26 ],
Christopher Ferris01d50372017-01-30 13:45:16 -080027
28 target: {
29 darwin: {
30 enabled: false,
31 },
32 },
Christopher Ferris3958f802017-02-01 15:44:40 -080033
34 multilib: {
35 lib32: {
36 suffix: "32",
37 },
38 lib64: {
39 suffix: "64",
40 },
41 },
Christopher Ferris723cf9b2017-01-19 20:08:48 -080042}
43
44cc_defaults {
45 name: "libunwindstack_common",
46 defaults: ["libunwindstack_flags"],
47
48 srcs: [
49 "ArmExidx.cpp",
Christopher Ferris8642fcb2017-04-24 11:14:39 -070050 "DwarfCfa.cpp",
Christopher Ferris61d40972017-06-12 19:14:20 -070051 "DwarfDebugFrame.cpp",
52 "DwarfEhFrame.cpp",
Christopher Ferris72a6fa62017-03-21 12:41:17 -070053 "DwarfMemory.cpp",
Christopher Ferris55d22ef2017-04-04 10:41:31 -070054 "DwarfOp.cpp",
Christopher Ferris53a3c9b2017-05-10 18:34:15 -070055 "DwarfSection.cpp",
Christopher Ferris3958f802017-02-01 15:44:40 -080056 "Elf.cpp",
57 "ElfInterface.cpp",
58 "ElfInterfaceArm.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -080059 "Log.cpp",
Christopher Ferris0d7cf3e2017-04-19 15:42:19 -070060 "MapInfo.cpp",
Christopher Ferris09385e72017-04-05 13:25:04 -070061 "Maps.cpp",
Christopher Ferris3958f802017-02-01 15:44:40 -080062 "Memory.cpp",
Christopher Ferrisbae69f12017-06-28 14:51:54 -070063 "Regs.cpp",
Christopher Ferrise7ba4cc2017-04-04 14:06:58 -070064 "Symbols.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -080065 ],
66
67 shared_libs: [
68 "libbase",
69 "liblog",
Christopher Ferrisbae69f12017-06-28 14:51:54 -070070 "liblzma",
Christopher Ferris723cf9b2017-01-19 20:08:48 -080071 ],
72}
73
74cc_library {
75 name: "libunwindstack",
76 defaults: ["libunwindstack_common"],
77}
78
79cc_library {
80 name: "libunwindstack_debug",
81 defaults: ["libunwindstack_common"],
82
83 cflags: [
84 "-UNDEBUG",
85 "-O0",
86 "-g",
87 ],
88}
89
90//-------------------------------------------------------------------------
91// Unit Tests
92//-------------------------------------------------------------------------
93cc_defaults {
94 name: "libunwindstack_test_common",
95 defaults: ["libunwindstack_flags"],
96
97 srcs: [
98 "tests/ArmExidxDecodeTest.cpp",
99 "tests/ArmExidxExtractTest.cpp",
Christopher Ferris8642fcb2017-04-24 11:14:39 -0700100 "tests/DwarfCfaLogTest.cpp",
101 "tests/DwarfCfaTest.cpp",
Christopher Ferris61d40972017-06-12 19:14:20 -0700102 "tests/DwarfDebugFrameTest.cpp",
103 "tests/DwarfEhFrameTest.cpp",
Christopher Ferris72a6fa62017-03-21 12:41:17 -0700104 "tests/DwarfMemoryTest.cpp",
Christopher Ferris55d22ef2017-04-04 10:41:31 -0700105 "tests/DwarfOpLogTest.cpp",
106 "tests/DwarfOpTest.cpp",
Christopher Ferris53a3c9b2017-05-10 18:34:15 -0700107 "tests/DwarfSectionTest.cpp",
108 "tests/DwarfSectionImplTest.cpp",
Christopher Ferris3958f802017-02-01 15:44:40 -0800109 "tests/ElfInterfaceArmTest.cpp",
110 "tests/ElfInterfaceTest.cpp",
111 "tests/ElfTest.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800112 "tests/LogFake.cpp",
Christopher Ferris0d7cf3e2017-04-19 15:42:19 -0700113 "tests/MapInfoTest.cpp",
Christopher Ferris09385e72017-04-05 13:25:04 -0700114 "tests/MapsTest.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800115 "tests/MemoryFake.cpp",
116 "tests/MemoryFileTest.cpp",
117 "tests/MemoryLocalTest.cpp",
118 "tests/MemoryRangeTest.cpp",
119 "tests/MemoryRemoteTest.cpp",
120 "tests/RegsTest.cpp",
Christopher Ferrise7ba4cc2017-04-04 14:06:58 -0700121 "tests/SymbolsTest.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800122 ],
123
124 cflags: [
125 "-O0",
126 "-g",
127 ],
128
129 shared_libs: [
130 "libbase",
131 "liblog",
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700132 "liblzma",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800133 ],
134
Christopher Ferris53a3c9b2017-05-10 18:34:15 -0700135 static_libs: [
136 "libgmock",
137 ],
138
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800139 target: {
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800140 linux: {
141 host_ldlibs: [
142 "-lrt",
143 ],
144 },
145 },
146}
147
148// These unit tests run against the shared library.
149cc_test {
150 name: "libunwindstack_test",
151 defaults: ["libunwindstack_test_common"],
152
153 shared_libs: [
154 "libunwindstack",
155 ],
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700156
157 data: [
158 "tests/elf32.xz",
159 "tests/elf64.xz",
160 ],
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800161}
162
163// These unit tests run against the static debug library.
164cc_test {
165 name: "libunwindstack_test_debug",
166 defaults: ["libunwindstack_test_common"],
167
168 static_libs: [
169 "libunwindstack_debug",
170 ],
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700171
172 data: [
173 "tests/elf32.xz",
174 "tests/elf64.xz",
175 ],
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800176}
Christopher Ferris3958f802017-02-01 15:44:40 -0800177
178//-------------------------------------------------------------------------
179// Utility Executables
180//-------------------------------------------------------------------------
181cc_defaults {
182 name: "libunwindstack_executables",
183 defaults: ["libunwindstack_flags"],
184
185 shared_libs: [
186 "libunwindstack",
187 "libbase",
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700188 "liblzma",
Christopher Ferris3958f802017-02-01 15:44:40 -0800189 ],
190
191 static_libs: [
192 "liblog",
193 ],
194
195 compile_multilib: "both",
196}
197
198cc_binary {
199 name: "unwind_info",
200 defaults: ["libunwindstack_executables"],
201
202 srcs: [
203 "unwind_info.cpp",
204 ],
205}
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700206
207// Generates the elf data for use in the tests for .gnu_debugdata frames.
208// Once these files are generated, use the xz command to compress the data.
209cc_binary_host {
210 name: "gen_gnudebugdata",
211
212 cflags: [
213 "-Wall",
214 "-Werror",
215 "-Wextra",
216 ],
217
218 srcs: [
219 "tests/GenGnuDebugdata.cpp",
220 ],
221}