Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 1 | // |
| 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 | |
| 17 | cc_defaults { |
| 18 | name: "libunwindstack_flags", |
| 19 | |
| 20 | host_supported: true, |
| 21 | |
| 22 | cflags: [ |
| 23 | "-Wall", |
| 24 | "-Werror", |
| 25 | "-Wextra", |
| 26 | ], |
Christopher Ferris | 01d5037 | 2017-01-30 13:45:16 -0800 | [diff] [blame] | 27 | |
| 28 | target: { |
| 29 | darwin: { |
| 30 | enabled: false, |
| 31 | }, |
| 32 | }, |
Christopher Ferris | 3958f80 | 2017-02-01 15:44:40 -0800 | [diff] [blame] | 33 | |
| 34 | multilib: { |
| 35 | lib32: { |
| 36 | suffix: "32", |
| 37 | }, |
| 38 | lib64: { |
| 39 | suffix: "64", |
| 40 | }, |
| 41 | }, |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | cc_defaults { |
| 45 | name: "libunwindstack_common", |
| 46 | defaults: ["libunwindstack_flags"], |
| 47 | |
| 48 | srcs: [ |
| 49 | "ArmExidx.cpp", |
Christopher Ferris | 8642fcb | 2017-04-24 11:14:39 -0700 | [diff] [blame] | 50 | "DwarfCfa.cpp", |
Christopher Ferris | 61d4097 | 2017-06-12 19:14:20 -0700 | [diff] [blame] | 51 | "DwarfDebugFrame.cpp", |
| 52 | "DwarfEhFrame.cpp", |
Christopher Ferris | 72a6fa6 | 2017-03-21 12:41:17 -0700 | [diff] [blame] | 53 | "DwarfMemory.cpp", |
Christopher Ferris | 55d22ef | 2017-04-04 10:41:31 -0700 | [diff] [blame] | 54 | "DwarfOp.cpp", |
Christopher Ferris | 53a3c9b | 2017-05-10 18:34:15 -0700 | [diff] [blame] | 55 | "DwarfSection.cpp", |
Christopher Ferris | 3958f80 | 2017-02-01 15:44:40 -0800 | [diff] [blame] | 56 | "Elf.cpp", |
| 57 | "ElfInterface.cpp", |
| 58 | "ElfInterfaceArm.cpp", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 59 | "Log.cpp", |
Christopher Ferris | 0d7cf3e | 2017-04-19 15:42:19 -0700 | [diff] [blame] | 60 | "MapInfo.cpp", |
Christopher Ferris | 09385e7 | 2017-04-05 13:25:04 -0700 | [diff] [blame] | 61 | "Maps.cpp", |
Christopher Ferris | 3958f80 | 2017-02-01 15:44:40 -0800 | [diff] [blame] | 62 | "Memory.cpp", |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 63 | "Regs.cpp", |
Christopher Ferris | e7ba4cc | 2017-04-04 14:06:58 -0700 | [diff] [blame] | 64 | "Symbols.cpp", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 65 | ], |
| 66 | |
| 67 | shared_libs: [ |
| 68 | "libbase", |
| 69 | "liblog", |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 70 | "liblzma", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 71 | ], |
| 72 | } |
| 73 | |
| 74 | cc_library { |
| 75 | name: "libunwindstack", |
| 76 | defaults: ["libunwindstack_common"], |
| 77 | } |
| 78 | |
| 79 | cc_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 | //------------------------------------------------------------------------- |
| 93 | cc_defaults { |
| 94 | name: "libunwindstack_test_common", |
| 95 | defaults: ["libunwindstack_flags"], |
| 96 | |
| 97 | srcs: [ |
| 98 | "tests/ArmExidxDecodeTest.cpp", |
| 99 | "tests/ArmExidxExtractTest.cpp", |
Christopher Ferris | 8642fcb | 2017-04-24 11:14:39 -0700 | [diff] [blame] | 100 | "tests/DwarfCfaLogTest.cpp", |
| 101 | "tests/DwarfCfaTest.cpp", |
Christopher Ferris | 61d4097 | 2017-06-12 19:14:20 -0700 | [diff] [blame] | 102 | "tests/DwarfDebugFrameTest.cpp", |
| 103 | "tests/DwarfEhFrameTest.cpp", |
Christopher Ferris | 72a6fa6 | 2017-03-21 12:41:17 -0700 | [diff] [blame] | 104 | "tests/DwarfMemoryTest.cpp", |
Christopher Ferris | 55d22ef | 2017-04-04 10:41:31 -0700 | [diff] [blame] | 105 | "tests/DwarfOpLogTest.cpp", |
| 106 | "tests/DwarfOpTest.cpp", |
Christopher Ferris | 53a3c9b | 2017-05-10 18:34:15 -0700 | [diff] [blame] | 107 | "tests/DwarfSectionTest.cpp", |
| 108 | "tests/DwarfSectionImplTest.cpp", |
Christopher Ferris | 3958f80 | 2017-02-01 15:44:40 -0800 | [diff] [blame] | 109 | "tests/ElfInterfaceArmTest.cpp", |
| 110 | "tests/ElfInterfaceTest.cpp", |
| 111 | "tests/ElfTest.cpp", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 112 | "tests/LogFake.cpp", |
Christopher Ferris | 0d7cf3e | 2017-04-19 15:42:19 -0700 | [diff] [blame] | 113 | "tests/MapInfoTest.cpp", |
Christopher Ferris | 09385e7 | 2017-04-05 13:25:04 -0700 | [diff] [blame] | 114 | "tests/MapsTest.cpp", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 115 | "tests/MemoryFake.cpp", |
| 116 | "tests/MemoryFileTest.cpp", |
| 117 | "tests/MemoryLocalTest.cpp", |
| 118 | "tests/MemoryRangeTest.cpp", |
| 119 | "tests/MemoryRemoteTest.cpp", |
| 120 | "tests/RegsTest.cpp", |
Christopher Ferris | e7ba4cc | 2017-04-04 14:06:58 -0700 | [diff] [blame] | 121 | "tests/SymbolsTest.cpp", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 122 | ], |
| 123 | |
| 124 | cflags: [ |
| 125 | "-O0", |
| 126 | "-g", |
| 127 | ], |
| 128 | |
| 129 | shared_libs: [ |
| 130 | "libbase", |
| 131 | "liblog", |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 132 | "liblzma", |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 133 | ], |
| 134 | |
Christopher Ferris | 53a3c9b | 2017-05-10 18:34:15 -0700 | [diff] [blame] | 135 | static_libs: [ |
| 136 | "libgmock", |
| 137 | ], |
| 138 | |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 139 | target: { |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 140 | linux: { |
| 141 | host_ldlibs: [ |
| 142 | "-lrt", |
| 143 | ], |
| 144 | }, |
| 145 | }, |
| 146 | } |
| 147 | |
| 148 | // These unit tests run against the shared library. |
| 149 | cc_test { |
| 150 | name: "libunwindstack_test", |
| 151 | defaults: ["libunwindstack_test_common"], |
| 152 | |
| 153 | shared_libs: [ |
| 154 | "libunwindstack", |
| 155 | ], |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 156 | |
| 157 | data: [ |
| 158 | "tests/elf32.xz", |
| 159 | "tests/elf64.xz", |
| 160 | ], |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 161 | } |
| 162 | |
| 163 | // These unit tests run against the static debug library. |
| 164 | cc_test { |
| 165 | name: "libunwindstack_test_debug", |
| 166 | defaults: ["libunwindstack_test_common"], |
| 167 | |
| 168 | static_libs: [ |
| 169 | "libunwindstack_debug", |
| 170 | ], |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 171 | |
| 172 | data: [ |
| 173 | "tests/elf32.xz", |
| 174 | "tests/elf64.xz", |
| 175 | ], |
Christopher Ferris | 723cf9b | 2017-01-19 20:08:48 -0800 | [diff] [blame] | 176 | } |
Christopher Ferris | 3958f80 | 2017-02-01 15:44:40 -0800 | [diff] [blame] | 177 | |
| 178 | //------------------------------------------------------------------------- |
| 179 | // Utility Executables |
| 180 | //------------------------------------------------------------------------- |
| 181 | cc_defaults { |
| 182 | name: "libunwindstack_executables", |
| 183 | defaults: ["libunwindstack_flags"], |
| 184 | |
| 185 | shared_libs: [ |
| 186 | "libunwindstack", |
| 187 | "libbase", |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 188 | "liblzma", |
Christopher Ferris | 3958f80 | 2017-02-01 15:44:40 -0800 | [diff] [blame] | 189 | ], |
| 190 | |
| 191 | static_libs: [ |
| 192 | "liblog", |
| 193 | ], |
| 194 | |
| 195 | compile_multilib: "both", |
| 196 | } |
| 197 | |
| 198 | cc_binary { |
| 199 | name: "unwind_info", |
| 200 | defaults: ["libunwindstack_executables"], |
| 201 | |
| 202 | srcs: [ |
| 203 | "unwind_info.cpp", |
| 204 | ], |
| 205 | } |
Christopher Ferris | bae69f1 | 2017-06-28 14:51:54 -0700 | [diff] [blame^] | 206 | |
| 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. |
| 209 | cc_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 | } |