blob: 992f7ec3e4b63d89b1827f2ce5549372bd89a543 [file] [log] [blame]
David Sehr67bf42e2018-02-26 16:43:04 -08001//
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
David Sehrc431b9d2018-03-02 12:01:51 -080017cc_defaults {
18 name: "libartbase_defaults",
19 defaults: ["art_defaults"],
20 host_supported: true,
21 srcs: [
David Sehrc3e18952018-05-11 16:59:31 -070022 "arch/instruction_set.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080023 "base/allocator.cc",
David Sehr1ce2b3b2018-04-05 11:02:03 -070024 "base/arena_allocator.cc",
25 "base/arena_bit_vector.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080026 "base/bit_vector.cc",
Andreas Gampe8764dc32019-01-07 15:20:12 -080027 "base/enums.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080028 "base/file_magic.cc",
David Sehrc3e18952018-05-11 16:59:31 -070029 "base/file_utils.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080030 "base/hex_dump.cc",
David Brazdildcfa89b2018-10-31 11:04:10 +000031 "base/hiddenapi_flags.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080032 "base/logging.cc",
David Sehr1ce2b3b2018-04-05 11:02:03 -070033 "base/malloc_arena_pool.cc",
Orion Hodson563ada22018-09-04 11:28:31 +010034 "base/membarrier.cc",
35 "base/memfd.cc",
David Sehr1ce2b3b2018-04-05 11:02:03 -070036 "base/memory_region.cc",
David Sehr79e26072018-04-06 17:58:50 -070037 "base/mem_map.cc",
Steve Austin882ed6b2018-06-08 11:40:38 -070038 // "base/mem_map_fuchsia.cc", put in target when fuchsia supported by soong
David Sehrc431b9d2018-03-02 12:01:51 -080039 "base/os_linux.cc",
40 "base/runtime_debug.cc",
41 "base/safe_copy.cc",
David Sehr1ce2b3b2018-04-05 11:02:03 -070042 "base/scoped_arena_allocator.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080043 "base/scoped_flock.cc",
Elliott Hughesc2efd4d2018-10-25 13:14:55 -070044 "base/socket_peer_is_trusted.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080045 "base/time_utils.cc",
46 "base/unix_file/fd_file.cc",
47 "base/unix_file/random_access_file_utils.cc",
48 "base/utils.cc",
David Sehr79e26072018-04-06 17:58:50 -070049 "base/zip_archive.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080050 ],
David Sehr79e26072018-04-06 17:58:50 -070051 target: {
52 android: {
David Sehr10db8fe2018-07-18 11:01:20 -070053 srcs: [
54 "base/mem_map_unix.cc",
55 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +000056 static_libs: [
57 // ZipArchive support, the order matters here to get all symbols.
58 "libziparchive",
59 "libz",
60 ],
David Sehr10db8fe2018-07-18 11:01:20 -070061 shared_libs: [
62 "liblog",
63 // For ashmem.
Orion Hodson119733d2019-01-30 15:14:41 +000064 "libartpalette",
David Sehr10db8fe2018-07-18 11:01:20 -070065 // For common macros.
66 "libbase",
67 ],
David Sehr9d9227a2018-12-19 12:32:50 -080068 export_shared_lib_headers: ["libbase"],
Martin Stjernholm43551622018-11-09 15:14:54 +000069 // Exclude the version script from Darwin host since it's not
70 // supported by the linker there. That means ASan checks on Darwin
71 // might trigger ODR violations.
72 version_script: "libartbase.map",
David Sehr79e26072018-04-06 17:58:50 -070073 },
David Sehr10db8fe2018-07-18 11:01:20 -070074 not_windows: {
75 srcs: [
76 "base/mem_map_unix.cc",
77 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +000078 shared_libs: [
79 "libziparchive",
80 "libz",
David Sehr10db8fe2018-07-18 11:01:20 -070081 "liblog",
82 // For ashmem.
Orion Hodson119733d2019-01-30 15:14:41 +000083 "libartpalette",
David Sehr10db8fe2018-07-18 11:01:20 -070084 // For common macros.
85 "libbase",
David Sehr79e26072018-04-06 17:58:50 -070086 ],
David Sehr9d9227a2018-12-19 12:32:50 -080087 export_shared_lib_headers: ["libbase"],
David Sehr79e26072018-04-06 17:58:50 -070088 },
Martin Stjernholm43551622018-11-09 15:14:54 +000089 linux_glibc: {
90 version_script: "libartbase.map",
91 },
92 windows: {
93 version_script: "libartbase.map",
David Sehr9d9227a2018-12-19 12:32:50 -080094 srcs: [
95 "base/mem_map_windows.cc",
96 ],
David Sehr10db8fe2018-07-18 11:01:20 -070097 static_libs: [
98 "libziparchive",
99 "libz",
100 "liblog",
101 // For ashmem.
Orion Hodson119733d2019-01-30 15:14:41 +0000102 "libartpalette",
David Sehr10db8fe2018-07-18 11:01:20 -0700103 // For common macros.
104 "libbase",
105 ],
David Sehr9d9227a2018-12-19 12:32:50 -0800106 export_static_lib_headers: ["libbase"],
David Sehr10db8fe2018-07-18 11:01:20 -0700107 cflags: ["-Wno-thread-safety"],
Martin Stjernholm43551622018-11-09 15:14:54 +0000108 },
David Srbeckyd53f6062019-03-22 14:55:21 +0000109 darwin: {
110 enabled: true, // for libdexfile.
111 },
David Sehr79e26072018-04-06 17:58:50 -0700112 },
David Sehrc431b9d2018-03-02 12:01:51 -0800113 generated_sources: ["art_libartbase_operator_srcs"],
114 cflags: ["-DBUILDING_LIBART=1"],
Martin Stjernholm43551622018-11-09 15:14:54 +0000115
116 // Utilities used by various ART libs and tools are linked in statically
117 // here to avoid shared lib dependencies outside the ART APEX. No target
118 // there should depend on these separately.
119 whole_static_libs: [
120 "liblz4",
121 "liblzma",
122 ],
123
David Sehrc431b9d2018-03-02 12:01:51 -0800124 export_include_dirs: ["."],
125 // ART's macros.h depends on libbase's macros.h.
126 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
127 // generically. dex2oat takes care of it itself.
David Sehrc431b9d2018-03-02 12:01:51 -0800128}
129
Andreas Gampeec5ed062018-01-26 16:20:02 -0800130cc_defaults {
131 name: "libartbase_static_base_defaults",
132 static_libs: [
133 "libbase",
Orion Hodson119733d2019-01-30 15:14:41 +0000134 "libartpalette",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800135 "liblog",
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000136 "libz",
137 "libziparchive",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800138 ],
139}
140
141cc_defaults {
142 name: "libartbase_static_defaults",
143 defaults: ["libartbase_static_base_defaults"],
144 static_libs: ["libartbase"],
145}
146
147cc_defaults {
148 name: "libartbased_static_defaults",
149 defaults: ["libartbase_static_base_defaults"],
150 static_libs: ["libartbased"],
151}
152
David Sehrc431b9d2018-03-02 12:01:51 -0800153gensrcs {
154 name: "art_libartbase_operator_srcs",
155 cmd: "$(location generate_operator_out) art/libartbase $(in) > $(out)",
156 tools: ["generate_operator_out"],
157 srcs: [
David Sehrc3e18952018-05-11 16:59:31 -0700158 "arch/instruction_set.h",
David Sehrc431b9d2018-03-02 12:01:51 -0800159 "base/allocator.h",
David Sehrc431b9d2018-03-02 12:01:51 -0800160 "base/unix_file/fd_file.h",
161 ],
162 output_extension: "operator_out.cc",
163}
164
165art_cc_library {
166 name: "libartbase",
167 defaults: ["libartbase_defaults"],
168 // Leave the symbols in the shared library so that stack unwinders can
169 // produce meaningful name resolution.
170 strip: {
171 keep_symbols: true,
172 },
David Sehr79e26072018-04-06 17:58:50 -0700173 shared_libs: [
174 "libbase",
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000175 "libziparchive",
David Sehr79e26072018-04-06 17:58:50 -0700176 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800177 export_shared_lib_headers: ["libbase"],
David Sehr10db8fe2018-07-18 11:01:20 -0700178 target: {
179 windows: {
180 enabled: true,
181 shared: {
182 enabled: false,
183 },
184 },
185 },
David Sehrc431b9d2018-03-02 12:01:51 -0800186}
187
188art_cc_library {
189 name: "libartbased",
190 defaults: [
191 "art_debug_defaults",
192 "libartbase_defaults",
193 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000194 shared_libs: [
195 "libbase",
196 "libziparchive",
197 ],
198 export_shared_lib_headers: ["libbase"],
David Sehr10db8fe2018-07-18 11:01:20 -0700199 target: {
200 windows: {
201 enabled: true,
202 shared: {
203 enabled: false,
204 },
205 },
206 },
David Sehrc431b9d2018-03-02 12:01:51 -0800207}
208
David Sehrd5f8de82018-04-27 14:12:03 -0700209art_cc_library {
210 name: "libartbase-art-gtest",
211 defaults: ["libart-gtest-defaults"],
212 srcs: [
213 "base/common_art_test.cc",
214 ],
215 shared_libs: [
216 "libartbased",
217 "libdexfiled",
218 "libbase",
219 "libbacktrace",
220 ],
221 header_libs: [
222 "libnativehelper_header_only",
223 ],
David Sehrd5f8de82018-04-27 14:12:03 -0700224}
225
David Sehr67bf42e2018-02-26 16:43:04 -0800226art_cc_test {
227 name: "art_libartbase_tests",
228 defaults: [
229 "art_gtest_defaults",
230 ],
231 srcs: [
David Sehrc3e18952018-05-11 16:59:31 -0700232 "arch/instruction_set_test.cc",
David Sehr1ce2b3b2018-04-05 11:02:03 -0700233 "base/arena_allocator_test.cc",
David Sehrc431b9d2018-03-02 12:01:51 -0800234 "base/bit_field_test.cc",
David Srbecky68fefac2018-05-10 17:49:33 +0100235 "base/bit_memory_region_test.cc",
David Sehrc431b9d2018-03-02 12:01:51 -0800236 "base/bit_string_test.cc",
237 "base/bit_struct_test.cc",
David Srbecky052f8ca2018-04-26 15:42:54 +0100238 "base/bit_table_test.cc",
David Sehr67bf42e2018-02-26 16:43:04 -0800239 "base/bit_utils_test.cc",
David Sehrc431b9d2018-03-02 12:01:51 -0800240 "base/bit_vector_test.cc",
David Sehrc3e18952018-05-11 16:59:31 -0700241 "base/file_utils_test.cc",
David Sehr67bf42e2018-02-26 16:43:04 -0800242 "base/hash_set_test.cc",
David Sehrc431b9d2018-03-02 12:01:51 -0800243 "base/hex_dump_test.cc",
244 "base/histogram_test.cc",
David Sehr9c4a0152018-04-05 12:23:54 -0700245 "base/indenter_test.cc",
David Sehr67bf42e2018-02-26 16:43:04 -0800246 "base/leb128_test.cc",
David Sehrc431b9d2018-03-02 12:01:51 -0800247 "base/logging_test.cc",
Orion Hodson563ada22018-09-04 11:28:31 +0100248 "base/memfd_test.cc",
249 "base/membarrier_test.cc",
David Sehr1ce2b3b2018-04-05 11:02:03 -0700250 "base/memory_region_test.cc",
David Sehr79e26072018-04-06 17:58:50 -0700251 "base/mem_map_test.cc",
Orion Hodsona0a72dc2019-03-06 11:00:52 +0000252 "base/memory_type_table_test.cc",
David Sehrc431b9d2018-03-02 12:01:51 -0800253 "base/safe_copy_test.cc",
254 "base/scoped_flock_test.cc",
255 "base/time_utils_test.cc",
256 "base/transform_array_ref_test.cc",
257 "base/transform_iterator_test.cc",
258 "base/unix_file/fd_file_test.cc",
259 "base/utils_test.cc",
260 "base/variant_map_test.cc",
David Sehr79e26072018-04-06 17:58:50 -0700261 "base/zip_archive_test.cc",
David Sehr67bf42e2018-02-26 16:43:04 -0800262 ],
263 shared_libs: [
264 "libbase",
265 ],
266}
267
268cc_library_headers {
269 name: "art_libartbase_headers",
270 host_supported: true,
271 export_include_dirs: ["."],
272 shared_libs: ["libbase"],
273 export_shared_lib_headers: ["libbase"],
274}