blob: 0345c2f4f7ba828dec8e048e750e6a89a0c53eb1 [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",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070034 "barrier.cc",
David Sehr3215fff2018-04-03 17:10:12 -070035 "base/mem_map_arena_pool.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070036 "base/mutex.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080037 "base/quasi_atomic.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070038 "base/timing_logger.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070039 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070040 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070041 "class_loader_context.cc",
Vladimir Markob4eb1b12018-05-24 11:09:38 +010042 "class_root.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070043 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070044 "common_throws.cc",
45 "compiler_filter.cc",
Vladimir Marko606adb32018-04-05 14:49:24 +010046 "debug_print.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070047 "debugger.cc",
David Sehr9e734c72018-01-04 17:56:19 -080048 "dex/dex_file_annotations.cc",
David Srbeckye1402122018-06-13 18:20:45 +010049 "dex_register_location.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010050 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070051 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080052 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070053 "fault_handler.cc",
54 "gc/allocation_record.cc",
55 "gc/allocator/dlmalloc.cc",
56 "gc/allocator/rosalloc.cc",
57 "gc/accounting/bitmap.cc",
58 "gc/accounting/card_table.cc",
59 "gc/accounting/heap_bitmap.cc",
60 "gc/accounting/mod_union_table.cc",
61 "gc/accounting/remembered_set.cc",
62 "gc/accounting/space_bitmap.cc",
63 "gc/collector/concurrent_copying.cc",
64 "gc/collector/garbage_collector.cc",
65 "gc/collector/immune_region.cc",
66 "gc/collector/immune_spaces.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070067 "gc/collector/mark_sweep.cc",
68 "gc/collector/partial_mark_sweep.cc",
69 "gc/collector/semi_space.cc",
70 "gc/collector/sticky_mark_sweep.cc",
71 "gc/gc_cause.cc",
72 "gc/heap.cc",
73 "gc/reference_processor.cc",
74 "gc/reference_queue.cc",
75 "gc/scoped_gc_critical_section.cc",
76 "gc/space/bump_pointer_space.cc",
77 "gc/space/dlmalloc_space.cc",
78 "gc/space/image_space.cc",
79 "gc/space/large_object_space.cc",
80 "gc/space/malloc_space.cc",
81 "gc/space/region_space.cc",
82 "gc/space/rosalloc_space.cc",
83 "gc/space/space.cc",
84 "gc/space/zygote_space.cc",
85 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -070086 "gc/verification.cc",
Andreas Gampeaa120012018-03-28 16:23:24 -070087 "hidden_api.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070088 "hprof/hprof.cc",
89 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +000090 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070091 "indirect_reference_table.cc",
92 "instrumentation.cc",
93 "intern_table.cc",
94 "interpreter/interpreter.cc",
95 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -080096 "interpreter/interpreter_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070097 "interpreter/interpreter_switch_impl.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -070098 "interpreter/lock_count_data.cc",
99 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700100 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700101 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700102 "jdwp/jdwp_event.cc",
103 "jdwp/jdwp_expand_buf.cc",
104 "jdwp/jdwp_handler.cc",
105 "jdwp/jdwp_main.cc",
106 "jdwp/jdwp_request.cc",
107 "jdwp/jdwp_socket.cc",
108 "jdwp/object_registry.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700109 "jit/debugger_interface.cc",
110 "jit/jit.cc",
111 "jit/jit_code_cache.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700112 "jit/profiling_info.cc",
113 "jit/profile_saver.cc",
Andreas Gampec0ed43e2018-06-18 10:47:15 -0700114 "jni/check_jni.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100115 "jni/java_vm_ext.cc",
116 "jni/jni_env_ext.cc",
117 "jni/jni_internal.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700118 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700119 "managed_stack.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100120 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700121 "mirror/array.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000122 "mirror/call_site.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700123 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700124 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700125 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100126 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100127 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700128 "mirror/field.cc",
129 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100130 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000131 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100132 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700133 "mirror/object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700134 "mirror/stack_trace_element.cc",
135 "mirror/string.cc",
136 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100137 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700138 "monitor.cc",
139 "native_bridge_art_interface.cc",
140 "native_stack_dump.cc",
141 "native/dalvik_system_DexFile.cc",
142 "native/dalvik_system_VMDebug.cc",
143 "native/dalvik_system_VMRuntime.cc",
144 "native/dalvik_system_VMStack.cc",
145 "native/dalvik_system_ZygoteHooks.cc",
146 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700147 "native/java_lang_Object.cc",
148 "native/java_lang_String.cc",
149 "native/java_lang_StringFactory.cc",
150 "native/java_lang_System.cc",
151 "native/java_lang_Thread.cc",
152 "native/java_lang_Throwable.cc",
153 "native/java_lang_VMClassLoader.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000154 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700155 "native/java_lang_ref_FinalizerReference.cc",
156 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700157 "native/java_lang_reflect_Array.cc",
158 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100159 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700160 "native/java_lang_reflect_Field.cc",
161 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100162 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700163 "native/java_lang_reflect_Proxy.cc",
164 "native/java_util_concurrent_atomic_AtomicLong.cc",
165 "native/libcore_util_CharsetUtils.cc",
166 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
167 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
168 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800169 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700170 "oat.cc",
171 "oat_file.cc",
172 "oat_file_assistant.cc",
173 "oat_file_manager.cc",
174 "oat_quick_method_header.cc",
175 "object_lock.cc",
176 "offsets.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700177 "parsed_options.cc",
178 "plugin.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700179 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700180 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700181 "reference_table.cc",
182 "reflection.cc",
183 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000184 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000185 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000186 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700187 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700188 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700189 "signal_catcher.cc",
190 "stack.cc",
191 "stack_map.cc",
192 "thread.cc",
193 "thread_list.cc",
194 "thread_pool.cc",
195 "ti/agent.cc",
196 "trace.cc",
197 "transaction.cc",
Orion Hodson537a4fe2018-05-15 13:57:58 +0100198 "var_handles.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100199 "vdex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700200 "verifier/instruction_flags.cc",
201 "verifier/method_verifier.cc",
202 "verifier/reg_type.cc",
203 "verifier/reg_type_cache.cc",
204 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100205 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800206 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700207 "well_known_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700208
209 "arch/context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700210 "arch/instruction_set_features.cc",
211 "arch/memcmp16.cc",
212 "arch/arm/instruction_set_features_arm.cc",
213 "arch/arm/registers_arm.cc",
214 "arch/arm64/instruction_set_features_arm64.cc",
215 "arch/arm64/registers_arm64.cc",
216 "arch/mips/instruction_set_features_mips.cc",
217 "arch/mips/registers_mips.cc",
218 "arch/mips64/instruction_set_features_mips64.cc",
219 "arch/mips64/registers_mips64.cc",
220 "arch/x86/instruction_set_features_x86.cc",
221 "arch/x86/registers_x86.cc",
222 "arch/x86_64/registers_x86_64.cc",
223 "entrypoints/entrypoint_utils.cc",
224 "entrypoints/jni/jni_entrypoints.cc",
225 "entrypoints/math_entrypoints.cc",
226 "entrypoints/quick/quick_alloc_entrypoints.cc",
227 "entrypoints/quick/quick_cast_entrypoints.cc",
228 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
229 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000230 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700231 "entrypoints/quick/quick_field_entrypoints.cc",
232 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700233 "entrypoints/quick/quick_jni_entrypoints.cc",
234 "entrypoints/quick/quick_lock_entrypoints.cc",
235 "entrypoints/quick/quick_math_entrypoints.cc",
236 "entrypoints/quick/quick_thread_entrypoints.cc",
237 "entrypoints/quick/quick_throw_entrypoints.cc",
238 "entrypoints/quick/quick_trampoline_entrypoints.cc",
239 ],
240
Chih-Hung Hsiehd5d597f2018-03-09 14:52:40 -0800241 // b/77976998, clang lld does not recognize the --keep-unique flag.
242 use_clang_lld: false,
243
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700244 arch: {
245 arm: {
246 clang_asflags: ["-no-integrated-as"],
247 srcs: [
248 "interpreter/mterp/mterp.cc",
249 "interpreter/mterp/out/mterp_arm.S",
250 "arch/arm/context_arm.cc",
251 "arch/arm/entrypoints_init_arm.cc",
252 "arch/arm/instruction_set_features_assembly_tests.S",
253 "arch/arm/jni_entrypoints_arm.S",
254 "arch/arm/memcmp16_arm.S",
255 "arch/arm/quick_entrypoints_arm.S",
256 "arch/arm/quick_entrypoints_cc_arm.cc",
257 "arch/arm/thread_arm.cc",
258 "arch/arm/fault_handler_arm.cc",
259 ],
260 },
261 arm64: {
262 srcs: [
263 "interpreter/mterp/mterp.cc",
264 "interpreter/mterp/out/mterp_arm64.S",
265 "arch/arm64/context_arm64.cc",
266 "arch/arm64/entrypoints_init_arm64.cc",
267 "arch/arm64/jni_entrypoints_arm64.S",
268 "arch/arm64/memcmp16_arm64.S",
269 "arch/arm64/quick_entrypoints_arm64.S",
270 "arch/arm64/thread_arm64.cc",
271 "monitor_pool.cc",
272 "arch/arm64/fault_handler_arm64.cc",
273 ],
274 },
275 x86: {
276 srcs: [
277 "interpreter/mterp/mterp.cc",
278 "interpreter/mterp/out/mterp_x86.S",
279 "arch/x86/context_x86.cc",
280 "arch/x86/entrypoints_init_x86.cc",
281 "arch/x86/jni_entrypoints_x86.S",
282 "arch/x86/memcmp16_x86.S",
283 "arch/x86/quick_entrypoints_x86.S",
284 "arch/x86/thread_x86.cc",
285 "arch/x86/fault_handler_x86.cc",
286 ],
287 },
288 x86_64: {
289 srcs: [
290 // Note that the fault_handler_x86.cc is not a mistake. This file is
291 // shared between the x86 and x86_64 architectures.
292 "interpreter/mterp/mterp.cc",
293 "interpreter/mterp/out/mterp_x86_64.S",
294 "arch/x86_64/context_x86_64.cc",
295 "arch/x86_64/entrypoints_init_x86_64.cc",
296 "arch/x86_64/jni_entrypoints_x86_64.S",
297 "arch/x86_64/memcmp16_x86_64.S",
298 "arch/x86_64/quick_entrypoints_x86_64.S",
299 "arch/x86_64/thread_x86_64.cc",
300 "monitor_pool.cc",
301 "arch/x86/fault_handler_x86.cc",
302 ],
303 },
304 mips: {
305 srcs: [
306 "interpreter/mterp/mterp.cc",
307 "interpreter/mterp/out/mterp_mips.S",
308 "arch/mips/context_mips.cc",
309 "arch/mips/entrypoints_init_mips.cc",
310 "arch/mips/jni_entrypoints_mips.S",
311 "arch/mips/memcmp16_mips.S",
312 "arch/mips/quick_entrypoints_mips.S",
313 "arch/mips/thread_mips.cc",
314 "arch/mips/fault_handler_mips.cc",
315 ],
316 },
317 mips64: {
318 srcs: [
319 "interpreter/mterp/mterp.cc",
320 "interpreter/mterp/out/mterp_mips64.S",
321 "arch/mips64/context_mips64.cc",
322 "arch/mips64/entrypoints_init_mips64.cc",
323 "arch/mips64/jni_entrypoints_mips64.S",
324 "arch/mips64/memcmp16_mips64.S",
325 "arch/mips64/quick_entrypoints_mips64.S",
326 "arch/mips64/thread_mips64.cc",
327 "monitor_pool.cc",
328 "arch/mips64/fault_handler_mips64.cc",
329 ],
330 },
331 },
332 target: {
333 android: {
334 srcs: [
335 "jdwp/jdwp_adb.cc",
336 "monitor_android.cc",
337 "runtime_android.cc",
338 "thread_android.cc",
339 ],
340 shared_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700341 "libtombstoned_client",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700342 ],
343 static_libs: [
Andreas Gampe69de3ce2018-06-25 14:12:47 -0700344 "libz", // For adler32.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700345 ],
346 },
347 android_arm: {
348 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
349 },
350 android_arm64: {
351 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
352 },
353 android_x86: {
354 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
355 },
356 android_x86_64: {
357 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
358 },
359 host: {
360 srcs: [
361 "monitor_linux.cc",
362 "runtime_linux.cc",
363 "thread_linux.cc",
364 ],
365 shared_libs: [
Andreas Gampe69de3ce2018-06-25 14:12:47 -0700366 "libz", // For adler32.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700367 ],
368 },
369 },
370 cflags: ["-DBUILDING_LIBART=1"],
371 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800372 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
373 generated_headers: ["cpp-define-generator-asm-support"],
374 // export our headers so the libart-gtest targets can use it as well.
375 export_generated_headers: ["cpp-define-generator-asm-support"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700376 include_dirs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700377 "art/sigchainlib",
Andreas Gampefdb7a612017-11-01 15:11:13 -0700378 "external/icu/icu4c/source/common",
Andreas Gampef24dfb02017-11-01 15:41:25 -0700379 "external/lz4/lib",
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700380 "external/zlib",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700381 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700382 header_libs: [
383 "art_cmdlineparser_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700384 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700385 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700386 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700387 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700388 "libnativebridge",
389 "libnativeloader",
390 "libbacktrace",
391 "liblz4",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700392 "liblog",
393 // For atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700394 "libcutils",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700395 // For common macros.
396 "libbase",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700397 ],
398 static: {
399 static_libs: ["libsigchain_dummy"],
400 },
401 shared: {
402 shared_libs: ["libsigchain"],
403 },
404 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700405 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700406 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
407 // generically. dex2oat takes care of it itself.
David Sehrfcbe15c2018-02-15 09:41:13 -0800408 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700409}
410
411gensrcs {
412 name: "art_operator_srcs",
Alex Lightb69d2d32018-02-21 13:37:17 -0800413 cmd: "$(location generate_operator_out) art/runtime $(in) > $(out)",
414 tools: ["generate_operator_out"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700415 srcs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700416 "base/mutex.h",
Mathieu Chartieradc90862018-05-11 13:03:06 -0700417 "class_loader_context.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700418 "class_status.h",
David Sehr334b9d72018-02-12 18:27:56 -0800419 "debugger.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700420 "gc_root.h",
421 "gc/allocator_type.h",
422 "gc/allocator/rosalloc.h",
423 "gc/collector_type.h",
424 "gc/collector/gc_type.h",
425 "gc/heap.h",
426 "gc/space/region_space.h",
427 "gc/space/space.h",
428 "gc/weak_root_state.h",
429 "image.h",
430 "instrumentation.h",
431 "indirect_reference_table.h",
Alex Light40320712017-12-14 11:52:04 -0800432 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700433 "jdwp/jdwp.h",
434 "jdwp/jdwp_constants.h",
435 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700436 "oat.h",
437 "object_callbacks.h",
438 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700439 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700440 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700441 "thread.h",
442 "thread_state.h",
443 "ti/agent.h",
Orion Hodson283ad2d2018-03-26 13:37:41 +0100444 "trace.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700445 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700446 ],
447 output_extension: "operator_out.cc",
448}
449
450// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
451// they are used to cross compile for the target.
452
453art_cc_library {
454 name: "libart",
455 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700456 // Leave the symbols in the shared library so that stack unwinders can
457 // produce meaningful name resolution.
458 strip: {
459 keep_symbols: true,
460 },
David Sehrc431b9d2018-03-02 12:01:51 -0800461 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800462 ],
463 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700464 "libartbase",
David Sehrc431b9d2018-03-02 12:01:51 -0800465 "libdexfile",
David Sehr82d046e2018-04-23 08:14:19 -0700466 "libprofile",
David Sehrc431b9d2018-03-02 12:01:51 -0800467 ],
468 export_shared_lib_headers: [
469 "libdexfile",
470 ],
Yi Kongfd8bb932018-03-12 16:52:57 -0700471 target: {
472 android: {
473 lto: {
474 thin: true,
475 },
476 },
477 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700478}
479
480art_cc_library {
481 name: "libartd",
482 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700483 "art_debug_defaults",
484 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700485 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800486 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800487 ],
488 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700489 "libartbased",
David Sehrc431b9d2018-03-02 12:01:51 -0800490 "libdexfiled",
David Sehr82d046e2018-04-23 08:14:19 -0700491 "libprofiled",
David Sehrc431b9d2018-03-02 12:01:51 -0800492 ],
493 export_shared_lib_headers: [
494 "libdexfiled",
495 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700496}
497
Colin Cross6b22aa52016-09-12 14:35:39 -0700498art_cc_library {
499 name: "libart-runtime-gtest",
500 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800501 srcs: [
502 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700503 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800504 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700505 shared_libs: [
506 "libartd",
David Sehrd5f8de82018-04-27 14:12:03 -0700507 "libartbase-art-gtest",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700508 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700509 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700510 ],
511 header_libs: [
512 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700513 ],
Andreas Gampefdb7a612017-11-01 15:11:13 -0700514 include_dirs: [
515 "external/icu/icu4c/source/common",
516 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700517}
518
Colin Cross6e95dd52016-09-12 15:37:10 -0700519art_cc_test {
520 name: "art_runtime_tests",
521 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700522 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700523 ],
524 srcs: [
525 "arch/arch_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700526 "arch/instruction_set_features_test.cc",
527 "arch/memcmp16_test.cc",
528 "arch/stub_test.cc",
529 "arch/arm/instruction_set_features_arm_test.cc",
530 "arch/arm64/instruction_set_features_arm64_test.cc",
531 "arch/mips/instruction_set_features_mips_test.cc",
532 "arch/mips64/instruction_set_features_mips64_test.cc",
533 "arch/x86/instruction_set_features_x86_test.cc",
534 "arch/x86_64/instruction_set_features_x86_64_test.cc",
535 "barrier_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700536 "base/mutex_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700537 "base/timing_logger_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700538 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700539 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700540 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800541 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700542 "compiler_filter_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700543 "entrypoints/math_entrypoints_test.cc",
544 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
545 "entrypoints_order_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800546 "exec_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700547 "gc/accounting/card_table_test.cc",
548 "gc/accounting/mod_union_table_test.cc",
549 "gc/accounting/space_bitmap_test.cc",
550 "gc/collector/immune_spaces_test.cc",
551 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700552 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700553 "gc/reference_queue_test.cc",
554 "gc/space/dlmalloc_space_static_test.cc",
555 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000556 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700557 "gc/space/large_object_space_test.cc",
558 "gc/space/rosalloc_space_static_test.cc",
559 "gc/space/rosalloc_space_random_test.cc",
560 "gc/space/space_create_test.cc",
561 "gc/system_weak_test.cc",
562 "gc/task_processor_test.cc",
563 "gtest_test.cc",
564 "handle_scope_test.cc",
Mathew Inwood7d74ef52018-03-16 14:18:33 +0000565 "hidden_api_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700566 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700567 "indirect_reference_table_test.cc",
568 "instrumentation_test.cc",
569 "intern_table_test.cc",
570 "interpreter/safe_math_test.cc",
571 "interpreter/unstarted_runtime_test.cc",
Alex Light40320712017-12-14 11:52:04 -0800572 "jdwp/jdwp_options_test.cc",
David Sehr1fed3432018-05-29 13:19:47 -0700573 "jit/profiling_info_test.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100574 "jni/java_vm_ext_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000575 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700576 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100577 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700578 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100579 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700580 "monitor_pool_test.cc",
581 "monitor_test.cc",
582 "oat_file_test.cc",
583 "oat_file_assistant_test.cc",
584 "parsed_options_test.cc",
585 "prebuilt_tools_test.cc",
586 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000587 "runtime_callbacks_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700588 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700589 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700590 "thread_pool_test.cc",
591 "transaction_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000592 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700593 "verifier/method_verifier_test.cc",
594 "verifier/reg_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700595 ],
596 shared_libs: [
597 "libbacktrace",
598 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700599 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700600 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700601 ],
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700602 include_dirs: [
603 "external/zlib",
604 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700605}
606
607art_cc_test {
608 name: "art_runtime_compiler_tests",
609 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700610 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700611 ],
612 srcs: [
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100613 "jni/jni_internal_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700614 "proxy_test.cc",
615 "reflection_test.cc",
616 ],
617 shared_libs: [
618 "libartd-compiler",
619 "libvixld-arm",
620 "libvixld-arm64",
621 ],
622}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700623
624cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700625 name: "libart_runtime_headers",
626 host_supported: true,
627 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700628}