blob: 46ab78dfbc9385f3e5a70bc3d8688750bb5dfbe3 [file] [log] [blame]
Colin Cross1f7f3bd2016-07-27 10:12:38 -07001//
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 Sehr8c0961f2018-01-23 16:11:38 -080017// Keep the __jit_debug_register_code symbol as a unique symbol during ICF for architectures where
18// we use gold as the linker (arm, x86, x86_64). The symbol is used by the debuggers to detect when
19// new jit code is generated. We don't want it to be called when a different function with the same
20// (empty) body is called.
David Srbecky440a9b32018-02-15 17:47:29 +000021JIT_DEBUG_REGISTER_CODE_LDFLAGS = [
22 "-Wl,--keep-unique,__jit_debug_register_code",
23 "-Wl,--keep-unique,__dex_debug_register_code"
24]
David Sehr8c0961f2018-01-23 16:11:38 -080025
Nicolas Geoffray8a229072018-05-10 16:34:14 +010026libart_cc_defaults {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070027 name: "libart_defaults",
28 defaults: ["art_defaults"],
29 host_supported: true,
30 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -070031 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070032 "art_field.cc",
33 "art_method.cc",
Alex Light543d8452018-07-13 16:25:58 +000034 "backtrace_helper.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070035 "barrier.cc",
David Sehr3215fff2018-04-03 17:10:12 -070036 "base/mem_map_arena_pool.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070037 "base/mutex.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080038 "base/quasi_atomic.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070039 "base/timing_logger.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070040 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070041 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070042 "class_loader_context.cc",
Vladimir Markob4eb1b12018-05-24 11:09:38 +010043 "class_root.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070044 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070045 "common_throws.cc",
46 "compiler_filter.cc",
Vladimir Marko606adb32018-04-05 14:49:24 +010047 "debug_print.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070048 "debugger.cc",
David Sehr9e734c72018-01-04 17:56:19 -080049 "dex/dex_file_annotations.cc",
David Srbeckye1402122018-06-13 18:20:45 +010050 "dex_register_location.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010051 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070052 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080053 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070054 "fault_handler.cc",
55 "gc/allocation_record.cc",
56 "gc/allocator/dlmalloc.cc",
57 "gc/allocator/rosalloc.cc",
58 "gc/accounting/bitmap.cc",
59 "gc/accounting/card_table.cc",
60 "gc/accounting/heap_bitmap.cc",
61 "gc/accounting/mod_union_table.cc",
62 "gc/accounting/remembered_set.cc",
63 "gc/accounting/space_bitmap.cc",
64 "gc/collector/concurrent_copying.cc",
65 "gc/collector/garbage_collector.cc",
66 "gc/collector/immune_region.cc",
67 "gc/collector/immune_spaces.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070068 "gc/collector/mark_sweep.cc",
69 "gc/collector/partial_mark_sweep.cc",
70 "gc/collector/semi_space.cc",
71 "gc/collector/sticky_mark_sweep.cc",
72 "gc/gc_cause.cc",
73 "gc/heap.cc",
74 "gc/reference_processor.cc",
75 "gc/reference_queue.cc",
76 "gc/scoped_gc_critical_section.cc",
77 "gc/space/bump_pointer_space.cc",
78 "gc/space/dlmalloc_space.cc",
79 "gc/space/image_space.cc",
80 "gc/space/large_object_space.cc",
81 "gc/space/malloc_space.cc",
82 "gc/space/region_space.cc",
83 "gc/space/rosalloc_space.cc",
84 "gc/space/space.cc",
85 "gc/space/zygote_space.cc",
86 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -070087 "gc/verification.cc",
Andreas Gampeaa120012018-03-28 16:23:24 -070088 "hidden_api.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070089 "hprof/hprof.cc",
90 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +000091 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070092 "indirect_reference_table.cc",
93 "instrumentation.cc",
94 "intern_table.cc",
95 "interpreter/interpreter.cc",
David Srbecky912f36c2018-09-08 12:22:58 +010096 "interpreter/interpreter_cache.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070097 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -080098 "interpreter/interpreter_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070099 "interpreter/interpreter_switch_impl.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700100 "interpreter/lock_count_data.cc",
101 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700102 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700103 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700104 "jdwp/jdwp_event.cc",
105 "jdwp/jdwp_expand_buf.cc",
106 "jdwp/jdwp_handler.cc",
107 "jdwp/jdwp_main.cc",
108 "jdwp/jdwp_request.cc",
109 "jdwp/jdwp_socket.cc",
110 "jdwp/object_registry.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700111 "jit/debugger_interface.cc",
112 "jit/jit.cc",
113 "jit/jit_code_cache.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700114 "jit/profiling_info.cc",
115 "jit/profile_saver.cc",
Andreas Gampec0ed43e2018-06-18 10:47:15 -0700116 "jni/check_jni.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100117 "jni/java_vm_ext.cc",
118 "jni/jni_env_ext.cc",
119 "jni/jni_internal.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700120 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700121 "managed_stack.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100122 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700123 "mirror/array.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000124 "mirror/call_site.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700125 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700126 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700127 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100128 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100129 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700130 "mirror/field.cc",
131 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100132 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000133 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100134 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700135 "mirror/object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700136 "mirror/stack_trace_element.cc",
137 "mirror/string.cc",
138 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100139 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700140 "monitor.cc",
141 "native_bridge_art_interface.cc",
142 "native_stack_dump.cc",
143 "native/dalvik_system_DexFile.cc",
144 "native/dalvik_system_VMDebug.cc",
145 "native/dalvik_system_VMRuntime.cc",
146 "native/dalvik_system_VMStack.cc",
147 "native/dalvik_system_ZygoteHooks.cc",
148 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700149 "native/java_lang_Object.cc",
150 "native/java_lang_String.cc",
151 "native/java_lang_StringFactory.cc",
152 "native/java_lang_System.cc",
153 "native/java_lang_Thread.cc",
154 "native/java_lang_Throwable.cc",
155 "native/java_lang_VMClassLoader.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000156 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700157 "native/java_lang_ref_FinalizerReference.cc",
158 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700159 "native/java_lang_reflect_Array.cc",
160 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100161 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700162 "native/java_lang_reflect_Field.cc",
163 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100164 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700165 "native/java_lang_reflect_Proxy.cc",
166 "native/java_util_concurrent_atomic_AtomicLong.cc",
167 "native/libcore_util_CharsetUtils.cc",
168 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
169 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
170 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800171 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700172 "oat.cc",
173 "oat_file.cc",
174 "oat_file_assistant.cc",
175 "oat_file_manager.cc",
176 "oat_quick_method_header.cc",
177 "object_lock.cc",
178 "offsets.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700179 "parsed_options.cc",
180 "plugin.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700181 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700182 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700183 "reference_table.cc",
184 "reflection.cc",
185 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000186 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000187 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000188 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700189 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700190 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700191 "signal_catcher.cc",
192 "stack.cc",
193 "stack_map.cc",
194 "thread.cc",
195 "thread_list.cc",
196 "thread_pool.cc",
197 "ti/agent.cc",
198 "trace.cc",
199 "transaction.cc",
Orion Hodson537a4fe2018-05-15 13:57:58 +0100200 "var_handles.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100201 "vdex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700202 "verifier/instruction_flags.cc",
203 "verifier/method_verifier.cc",
204 "verifier/reg_type.cc",
205 "verifier/reg_type_cache.cc",
206 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100207 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800208 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700209 "well_known_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700210
211 "arch/context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700212 "arch/instruction_set_features.cc",
213 "arch/memcmp16.cc",
214 "arch/arm/instruction_set_features_arm.cc",
215 "arch/arm/registers_arm.cc",
216 "arch/arm64/instruction_set_features_arm64.cc",
217 "arch/arm64/registers_arm64.cc",
218 "arch/mips/instruction_set_features_mips.cc",
219 "arch/mips/registers_mips.cc",
220 "arch/mips64/instruction_set_features_mips64.cc",
221 "arch/mips64/registers_mips64.cc",
222 "arch/x86/instruction_set_features_x86.cc",
223 "arch/x86/registers_x86.cc",
224 "arch/x86_64/registers_x86_64.cc",
225 "entrypoints/entrypoint_utils.cc",
226 "entrypoints/jni/jni_entrypoints.cc",
227 "entrypoints/math_entrypoints.cc",
228 "entrypoints/quick/quick_alloc_entrypoints.cc",
229 "entrypoints/quick/quick_cast_entrypoints.cc",
230 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
231 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000232 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700233 "entrypoints/quick/quick_field_entrypoints.cc",
234 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700235 "entrypoints/quick/quick_jni_entrypoints.cc",
236 "entrypoints/quick/quick_lock_entrypoints.cc",
237 "entrypoints/quick/quick_math_entrypoints.cc",
238 "entrypoints/quick/quick_thread_entrypoints.cc",
239 "entrypoints/quick/quick_throw_entrypoints.cc",
240 "entrypoints/quick/quick_trampoline_entrypoints.cc",
241 ],
242
243 arch: {
244 arm: {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700245 srcs: [
246 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100247 ":libart_mterp.arm",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700248 "arch/arm/context_arm.cc",
249 "arch/arm/entrypoints_init_arm.cc",
250 "arch/arm/instruction_set_features_assembly_tests.S",
251 "arch/arm/jni_entrypoints_arm.S",
252 "arch/arm/memcmp16_arm.S",
253 "arch/arm/quick_entrypoints_arm.S",
254 "arch/arm/quick_entrypoints_cc_arm.cc",
255 "arch/arm/thread_arm.cc",
256 "arch/arm/fault_handler_arm.cc",
257 ],
258 },
259 arm64: {
260 srcs: [
261 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100262 ":libart_mterp.arm64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700263 "arch/arm64/context_arm64.cc",
264 "arch/arm64/entrypoints_init_arm64.cc",
265 "arch/arm64/jni_entrypoints_arm64.S",
266 "arch/arm64/memcmp16_arm64.S",
267 "arch/arm64/quick_entrypoints_arm64.S",
268 "arch/arm64/thread_arm64.cc",
269 "monitor_pool.cc",
270 "arch/arm64/fault_handler_arm64.cc",
271 ],
272 },
273 x86: {
274 srcs: [
275 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100276 ":libart_mterp.x86",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700277 "arch/x86/context_x86.cc",
278 "arch/x86/entrypoints_init_x86.cc",
279 "arch/x86/jni_entrypoints_x86.S",
280 "arch/x86/memcmp16_x86.S",
281 "arch/x86/quick_entrypoints_x86.S",
282 "arch/x86/thread_x86.cc",
283 "arch/x86/fault_handler_x86.cc",
284 ],
285 },
286 x86_64: {
287 srcs: [
288 // Note that the fault_handler_x86.cc is not a mistake. This file is
289 // shared between the x86 and x86_64 architectures.
290 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100291 ":libart_mterp.x86_64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700292 "arch/x86_64/context_x86_64.cc",
293 "arch/x86_64/entrypoints_init_x86_64.cc",
294 "arch/x86_64/jni_entrypoints_x86_64.S",
295 "arch/x86_64/memcmp16_x86_64.S",
296 "arch/x86_64/quick_entrypoints_x86_64.S",
297 "arch/x86_64/thread_x86_64.cc",
298 "monitor_pool.cc",
299 "arch/x86/fault_handler_x86.cc",
300 ],
301 },
302 mips: {
303 srcs: [
304 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100305 ":libart_mterp.mips",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700306 "arch/mips/context_mips.cc",
307 "arch/mips/entrypoints_init_mips.cc",
308 "arch/mips/jni_entrypoints_mips.S",
309 "arch/mips/memcmp16_mips.S",
310 "arch/mips/quick_entrypoints_mips.S",
311 "arch/mips/thread_mips.cc",
312 "arch/mips/fault_handler_mips.cc",
313 ],
314 },
315 mips64: {
316 srcs: [
317 "interpreter/mterp/mterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100318 ":libart_mterp.mips64",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700319 "arch/mips64/context_mips64.cc",
320 "arch/mips64/entrypoints_init_mips64.cc",
321 "arch/mips64/jni_entrypoints_mips64.S",
322 "arch/mips64/memcmp16_mips64.S",
323 "arch/mips64/quick_entrypoints_mips64.S",
324 "arch/mips64/thread_mips64.cc",
325 "monitor_pool.cc",
326 "arch/mips64/fault_handler_mips64.cc",
327 ],
328 },
329 },
330 target: {
331 android: {
332 srcs: [
333 "jdwp/jdwp_adb.cc",
334 "monitor_android.cc",
335 "runtime_android.cc",
336 "thread_android.cc",
337 ],
338 shared_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700339 "libtombstoned_client",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700340 ],
341 static_libs: [
Andreas Gampe69de3ce2018-06-25 14:12:47 -0700342 "libz", // For adler32.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700343 ],
344 },
345 android_arm: {
346 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
347 },
348 android_arm64: {
349 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
350 },
351 android_x86: {
352 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
353 },
354 android_x86_64: {
355 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
356 },
357 host: {
358 srcs: [
359 "monitor_linux.cc",
360 "runtime_linux.cc",
361 "thread_linux.cc",
362 ],
363 shared_libs: [
Andreas Gampe69de3ce2018-06-25 14:12:47 -0700364 "libz", // For adler32.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700365 ],
366 },
367 },
368 cflags: ["-DBUILDING_LIBART=1"],
369 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800370 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
371 generated_headers: ["cpp-define-generator-asm-support"],
372 // export our headers so the libart-gtest targets can use it as well.
373 export_generated_headers: ["cpp-define-generator-asm-support"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700374 include_dirs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700375 "art/sigchainlib",
Andreas Gampefdb7a612017-11-01 15:11:13 -0700376 "external/icu/icu4c/source/common",
Andreas Gampef24dfb02017-11-01 15:41:25 -0700377 "external/lz4/lib",
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700378 "external/zlib",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700379 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700380 header_libs: [
381 "art_cmdlineparser_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700382 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700383 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700384 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700385 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700386 "libnativebridge",
387 "libnativeloader",
388 "libbacktrace",
389 "liblz4",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700390 "liblog",
Elliott Hughesc2efd4d2018-10-25 13:14:55 -0700391 // For atrace, properties, ashmem, set_sched_policy.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700392 "libcutils",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700393 // For common macros.
394 "libbase",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700395 ],
396 static: {
397 static_libs: ["libsigchain_dummy"],
398 },
399 shared: {
400 shared_libs: ["libsigchain"],
401 },
402 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700403 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700404 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
405 // generically. dex2oat takes care of it itself.
David Sehrfcbe15c2018-02-15 09:41:13 -0800406 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700407}
408
Andreas Gampeec5ed062018-01-26 16:20:02 -0800409libart_static_cc_defaults {
410 name: "libart_static_base_defaults",
411 target: {
412 android: {
413 static_libs: ["libtombstoned_client_static"],
414 },
415 },
416 static_libs: [
417 "libbacktrace",
418 "libbase",
419 "libcutils",
420 "liblog",
421 "liblz4",
422 "liblzma",
423 "libnativebridge",
424 "libnativeloader",
425 "libunwindstack",
426 "libz",
427 ],
428}
429
430cc_defaults {
431 name: "libart_static_defaults",
432 defaults: [
433 "libart_static_base_defaults",
434 "libartbase_static_defaults",
435 "libdexfile_static_defaults",
436 "libprofile_static_defaults",
437 ],
438 static_libs: ["libart"],
439}
440
441cc_defaults {
442 name: "libartd_static_defaults",
443 defaults: [
444 "libart_static_base_defaults",
445 "libartbased_static_defaults",
446 "libdexfiled_static_defaults",
447 "libprofiled_static_defaults",
448 ],
449 static_libs: ["libartd"],
450}
451
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700452gensrcs {
453 name: "art_operator_srcs",
Alex Lightb69d2d32018-02-21 13:37:17 -0800454 cmd: "$(location generate_operator_out) art/runtime $(in) > $(out)",
455 tools: ["generate_operator_out"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700456 srcs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700457 "base/mutex.h",
Mathieu Chartieradc90862018-05-11 13:03:06 -0700458 "class_loader_context.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700459 "class_status.h",
David Sehr334b9d72018-02-12 18:27:56 -0800460 "debugger.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700461 "gc_root.h",
462 "gc/allocator_type.h",
463 "gc/allocator/rosalloc.h",
464 "gc/collector_type.h",
465 "gc/collector/gc_type.h",
466 "gc/heap.h",
467 "gc/space/region_space.h",
468 "gc/space/space.h",
469 "gc/weak_root_state.h",
470 "image.h",
471 "instrumentation.h",
472 "indirect_reference_table.h",
Alex Light40320712017-12-14 11:52:04 -0800473 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700474 "jdwp/jdwp.h",
475 "jdwp/jdwp_constants.h",
476 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700477 "oat.h",
478 "object_callbacks.h",
479 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700480 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700481 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700482 "thread.h",
483 "thread_state.h",
484 "ti/agent.h",
Orion Hodson283ad2d2018-03-26 13:37:41 +0100485 "trace.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700486 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700487 ],
488 output_extension: "operator_out.cc",
489}
490
491// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
492// they are used to cross compile for the target.
493
494art_cc_library {
495 name: "libart",
496 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700497 // Leave the symbols in the shared library so that stack unwinders can
498 // produce meaningful name resolution.
499 strip: {
500 keep_symbols: true,
501 },
David Sehrc431b9d2018-03-02 12:01:51 -0800502 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800503 ],
504 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700505 "libartbase",
David Sehrc431b9d2018-03-02 12:01:51 -0800506 "libdexfile",
David Sehr82d046e2018-04-23 08:14:19 -0700507 "libprofile",
David Sehrc431b9d2018-03-02 12:01:51 -0800508 ],
509 export_shared_lib_headers: [
510 "libdexfile",
511 ],
Yi Kongfd8bb932018-03-12 16:52:57 -0700512 target: {
513 android: {
514 lto: {
515 thin: true,
516 },
517 },
518 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700519}
520
521art_cc_library {
522 name: "libartd",
523 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700524 "art_debug_defaults",
525 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700526 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800527 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800528 ],
529 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700530 "libartbased",
David Sehrc431b9d2018-03-02 12:01:51 -0800531 "libdexfiled",
David Sehr82d046e2018-04-23 08:14:19 -0700532 "libprofiled",
David Sehrc431b9d2018-03-02 12:01:51 -0800533 ],
534 export_shared_lib_headers: [
535 "libdexfiled",
536 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700537}
538
Colin Cross6b22aa52016-09-12 14:35:39 -0700539art_cc_library {
540 name: "libart-runtime-gtest",
541 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800542 srcs: [
543 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700544 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800545 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700546 shared_libs: [
547 "libartd",
David Sehrd5f8de82018-04-27 14:12:03 -0700548 "libartbase-art-gtest",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700549 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700550 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700551 ],
552 header_libs: [
553 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700554 ],
Andreas Gampefdb7a612017-11-01 15:11:13 -0700555 include_dirs: [
556 "external/icu/icu4c/source/common",
557 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700558}
559
Colin Cross6e95dd52016-09-12 15:37:10 -0700560art_cc_test {
561 name: "art_runtime_tests",
562 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700563 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700564 ],
565 srcs: [
566 "arch/arch_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700567 "arch/instruction_set_features_test.cc",
568 "arch/memcmp16_test.cc",
569 "arch/stub_test.cc",
570 "arch/arm/instruction_set_features_arm_test.cc",
571 "arch/arm64/instruction_set_features_arm64_test.cc",
572 "arch/mips/instruction_set_features_mips_test.cc",
573 "arch/mips64/instruction_set_features_mips64_test.cc",
574 "arch/x86/instruction_set_features_x86_test.cc",
575 "arch/x86_64/instruction_set_features_x86_64_test.cc",
576 "barrier_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700577 "base/mutex_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700578 "base/timing_logger_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700579 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700580 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700581 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800582 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700583 "compiler_filter_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700584 "entrypoints/math_entrypoints_test.cc",
585 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
586 "entrypoints_order_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800587 "exec_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700588 "gc/accounting/card_table_test.cc",
589 "gc/accounting/mod_union_table_test.cc",
590 "gc/accounting/space_bitmap_test.cc",
591 "gc/collector/immune_spaces_test.cc",
592 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700593 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700594 "gc/reference_queue_test.cc",
595 "gc/space/dlmalloc_space_static_test.cc",
596 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000597 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700598 "gc/space/large_object_space_test.cc",
599 "gc/space/rosalloc_space_static_test.cc",
600 "gc/space/rosalloc_space_random_test.cc",
601 "gc/space/space_create_test.cc",
602 "gc/system_weak_test.cc",
603 "gc/task_processor_test.cc",
604 "gtest_test.cc",
605 "handle_scope_test.cc",
Mathew Inwood7d74ef52018-03-16 14:18:33 +0000606 "hidden_api_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700607 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700608 "indirect_reference_table_test.cc",
609 "instrumentation_test.cc",
610 "intern_table_test.cc",
611 "interpreter/safe_math_test.cc",
612 "interpreter/unstarted_runtime_test.cc",
Alex Light40320712017-12-14 11:52:04 -0800613 "jdwp/jdwp_options_test.cc",
David Sehr1fed3432018-05-29 13:19:47 -0700614 "jit/profiling_info_test.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100615 "jni/java_vm_ext_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000616 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700617 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100618 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700619 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100620 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700621 "monitor_pool_test.cc",
622 "monitor_test.cc",
623 "oat_file_test.cc",
624 "oat_file_assistant_test.cc",
625 "parsed_options_test.cc",
626 "prebuilt_tools_test.cc",
627 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000628 "runtime_callbacks_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700629 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700630 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700631 "thread_pool_test.cc",
632 "transaction_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000633 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700634 "verifier/method_verifier_test.cc",
635 "verifier/reg_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700636 ],
637 shared_libs: [
638 "libbacktrace",
639 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700640 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700641 "art_cmdlineparser_headers", // For parsed_options_test.
David Srbecky0adf4d82018-10-01 18:17:45 +0100642 "cpp-define-generator-definitions",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700643 ],
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700644 include_dirs: [
645 "external/zlib",
646 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700647}
648
649art_cc_test {
650 name: "art_runtime_compiler_tests",
651 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700652 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700653 ],
654 srcs: [
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100655 "jni/jni_internal_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700656 "proxy_test.cc",
657 "reflection_test.cc",
658 ],
659 shared_libs: [
660 "libartd-compiler",
661 "libvixld-arm",
662 "libvixld-arm64",
663 ],
664}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700665
666cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700667 name: "libart_runtime_headers",
668 host_supported: true,
669 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700670}
David Srbeckybfbc6542018-09-11 13:34:57 +0100671
672genrule {
673 name: "libart_mterp.arm",
674 out: ["mterp_arm.S"],
675 srcs: ["interpreter/mterp/arm/*.S"],
676 tool_files: ["interpreter/mterp/gen_mterp.py", "interpreter/mterp/common/gen_setup.py"],
677 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
678}
679
680genrule {
681 name: "libart_mterp.arm64",
682 out: ["mterp_arm64.S"],
683 srcs: ["interpreter/mterp/arm64/*.S"],
684 tool_files: ["interpreter/mterp/gen_mterp.py", "interpreter/mterp/common/gen_setup.py"],
685 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
686}
687
688genrule {
689 name: "libart_mterp.mips",
690 out: ["mterp_mips.S"],
691 srcs: ["interpreter/mterp/mips/*.S"],
692 tool_files: ["interpreter/mterp/gen_mterp.py", "interpreter/mterp/common/gen_setup.py"],
693 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
694}
695
696genrule {
697 name: "libart_mterp.mips64",
698 out: ["mterp_mips64.S"],
699 srcs: ["interpreter/mterp/mips64/*.S"],
700 tool_files: ["interpreter/mterp/gen_mterp.py", "interpreter/mterp/common/gen_setup.py"],
701 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
702}
703
704genrule {
705 name: "libart_mterp.x86",
706 out: ["mterp_x86.S"],
707 srcs: ["interpreter/mterp/x86/*.S"],
708 tool_files: ["interpreter/mterp/gen_mterp.py", "interpreter/mterp/common/gen_setup.py"],
709 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
710}
711
712genrule {
713 name: "libart_mterp.x86_64",
714 out: ["mterp_x86_64.S"],
715 srcs: ["interpreter/mterp/x86_64/*.S"],
716 tool_files: ["interpreter/mterp/gen_mterp.py", "interpreter/mterp/common/gen_setup.py"],
717 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
718}