blob: 8776db7a2b9cc5df0ae5ece298f5aff09105624f [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
Christopher Ferris723cf9b2017-01-19 20:08:48 -080079//-------------------------------------------------------------------------
80// Unit Tests
81//-------------------------------------------------------------------------
82cc_defaults {
83 name: "libunwindstack_test_common",
84 defaults: ["libunwindstack_flags"],
85
86 srcs: [
87 "tests/ArmExidxDecodeTest.cpp",
88 "tests/ArmExidxExtractTest.cpp",
Christopher Ferris8642fcb2017-04-24 11:14:39 -070089 "tests/DwarfCfaLogTest.cpp",
90 "tests/DwarfCfaTest.cpp",
Christopher Ferris61d40972017-06-12 19:14:20 -070091 "tests/DwarfDebugFrameTest.cpp",
92 "tests/DwarfEhFrameTest.cpp",
Christopher Ferris72a6fa62017-03-21 12:41:17 -070093 "tests/DwarfMemoryTest.cpp",
Christopher Ferris55d22ef2017-04-04 10:41:31 -070094 "tests/DwarfOpLogTest.cpp",
95 "tests/DwarfOpTest.cpp",
Christopher Ferris53a3c9b2017-05-10 18:34:15 -070096 "tests/DwarfSectionTest.cpp",
97 "tests/DwarfSectionImplTest.cpp",
Christopher Ferris3958f802017-02-01 15:44:40 -080098 "tests/ElfInterfaceArmTest.cpp",
99 "tests/ElfInterfaceTest.cpp",
100 "tests/ElfTest.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800101 "tests/LogFake.cpp",
Christopher Ferris0d7cf3e2017-04-19 15:42:19 -0700102 "tests/MapInfoTest.cpp",
Christopher Ferris09385e72017-04-05 13:25:04 -0700103 "tests/MapsTest.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800104 "tests/MemoryFake.cpp",
105 "tests/MemoryFileTest.cpp",
106 "tests/MemoryLocalTest.cpp",
107 "tests/MemoryRangeTest.cpp",
108 "tests/MemoryRemoteTest.cpp",
109 "tests/RegsTest.cpp",
Christopher Ferrise7ba4cc2017-04-04 14:06:58 -0700110 "tests/SymbolsTest.cpp",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800111 ],
112
113 cflags: [
114 "-O0",
115 "-g",
116 ],
117
118 shared_libs: [
119 "libbase",
120 "liblog",
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700121 "liblzma",
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800122 ],
123
Christopher Ferris53a3c9b2017-05-10 18:34:15 -0700124 static_libs: [
125 "libgmock",
126 ],
127
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800128 target: {
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800129 linux: {
130 host_ldlibs: [
131 "-lrt",
132 ],
133 },
134 },
135}
136
137// These unit tests run against the shared library.
138cc_test {
139 name: "libunwindstack_test",
140 defaults: ["libunwindstack_test_common"],
141
142 shared_libs: [
143 "libunwindstack",
144 ],
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700145
146 data: [
147 "tests/elf32.xz",
148 "tests/elf64.xz",
149 ],
Christopher Ferris723cf9b2017-01-19 20:08:48 -0800150}
151
Christopher Ferris3958f802017-02-01 15:44:40 -0800152//-------------------------------------------------------------------------
153// Utility Executables
154//-------------------------------------------------------------------------
155cc_defaults {
156 name: "libunwindstack_executables",
157 defaults: ["libunwindstack_flags"],
158
159 shared_libs: [
160 "libunwindstack",
161 "libbase",
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700162 "liblzma",
Christopher Ferris3958f802017-02-01 15:44:40 -0800163 ],
164
165 static_libs: [
166 "liblog",
167 ],
168
169 compile_multilib: "both",
170}
171
172cc_binary {
173 name: "unwind_info",
174 defaults: ["libunwindstack_executables"],
175
176 srcs: [
177 "unwind_info.cpp",
178 ],
179}
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700180
181// Generates the elf data for use in the tests for .gnu_debugdata frames.
182// Once these files are generated, use the xz command to compress the data.
183cc_binary_host {
184 name: "gen_gnudebugdata",
185
186 cflags: [
187 "-Wall",
188 "-Werror",
189 "-Wextra",
190 ],
191
192 srcs: [
193 "tests/GenGnuDebugdata.cpp",
194 ],
Christopher Ferrisbfd62922017-06-28 20:44:48 -0700195
196 target: {
197 darwin: {
198 enabled: false,
199 },
200 },
Christopher Ferrisbae69f12017-06-28 14:51:54 -0700201}