blob: c0f1c366b8c5cbda415743767d4c5ea27952abb9 [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
David Sehr013fd802018-01-11 22:55:24 -080026cc_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",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070035 "base/arena_allocator.cc",
36 "base/arena_bit_vector.cc",
David Sehr891a50e2017-10-27 17:01:07 -070037 "base/file_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070038 "base/mutex.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080039 "base/quasi_atomic.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070040 "base/scoped_arena_allocator.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070041 "base/timing_logger.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070042 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070043 "check_jni.cc",
44 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070045 "class_loader_context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070046 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070047 "common_throws.cc",
48 "compiler_filter.cc",
49 "debugger.cc",
David Sehr334b9d72018-02-12 18:27:56 -080050 "dex/art_dex_file_loader.cc",
David Sehr9e734c72018-01-04 17:56:19 -080051 "dex/dex_file_annotations.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010052 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070053 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080054 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070055 "fault_handler.cc",
56 "gc/allocation_record.cc",
57 "gc/allocator/dlmalloc.cc",
58 "gc/allocator/rosalloc.cc",
59 "gc/accounting/bitmap.cc",
60 "gc/accounting/card_table.cc",
61 "gc/accounting/heap_bitmap.cc",
62 "gc/accounting/mod_union_table.cc",
63 "gc/accounting/remembered_set.cc",
64 "gc/accounting/space_bitmap.cc",
65 "gc/collector/concurrent_copying.cc",
66 "gc/collector/garbage_collector.cc",
67 "gc/collector/immune_region.cc",
68 "gc/collector/immune_spaces.cc",
69 "gc/collector/mark_compact.cc",
70 "gc/collector/mark_sweep.cc",
71 "gc/collector/partial_mark_sweep.cc",
72 "gc/collector/semi_space.cc",
73 "gc/collector/sticky_mark_sweep.cc",
74 "gc/gc_cause.cc",
75 "gc/heap.cc",
76 "gc/reference_processor.cc",
77 "gc/reference_queue.cc",
78 "gc/scoped_gc_critical_section.cc",
79 "gc/space/bump_pointer_space.cc",
80 "gc/space/dlmalloc_space.cc",
81 "gc/space/image_space.cc",
82 "gc/space/large_object_space.cc",
83 "gc/space/malloc_space.cc",
84 "gc/space/region_space.cc",
85 "gc/space/rosalloc_space.cc",
86 "gc/space/space.cc",
87 "gc/space/zygote_space.cc",
88 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -070089 "gc/verification.cc",
Andreas Gampeaa120012018-03-28 16:23:24 -070090 "hidden_api.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070091 "hprof/hprof.cc",
92 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +000093 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070094 "indirect_reference_table.cc",
95 "instrumentation.cc",
96 "intern_table.cc",
97 "interpreter/interpreter.cc",
98 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -080099 "interpreter/interpreter_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700100 "interpreter/interpreter_switch_impl.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700101 "interpreter/lock_count_data.cc",
102 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700103 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700104 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700105 "java_vm_ext.cc",
106 "jdwp/jdwp_event.cc",
107 "jdwp/jdwp_expand_buf.cc",
108 "jdwp/jdwp_handler.cc",
109 "jdwp/jdwp_main.cc",
110 "jdwp/jdwp_request.cc",
111 "jdwp/jdwp_socket.cc",
112 "jdwp/object_registry.cc",
113 "jni_env_ext.cc",
114 "jit/debugger_interface.cc",
115 "jit/jit.cc",
116 "jit/jit_code_cache.cc",
Calin Juravle33083d62017-01-18 15:29:12 -0800117 "jit/profile_compilation_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700118 "jit/profiling_info.cc",
119 "jit/profile_saver.cc",
120 "jni_internal.cc",
121 "jobject_comparator.cc",
122 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700123 "managed_stack.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700124 "mem_map.cc",
125 "memory_region.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100126 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700127 "mirror/array.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000128 "mirror/call_site.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700129 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700130 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700131 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100132 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100133 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700134 "mirror/field.cc",
135 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100136 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000137 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100138 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700139 "mirror/object.cc",
140 "mirror/reference.cc",
141 "mirror/stack_trace_element.cc",
142 "mirror/string.cc",
143 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100144 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700145 "monitor.cc",
146 "native_bridge_art_interface.cc",
147 "native_stack_dump.cc",
148 "native/dalvik_system_DexFile.cc",
149 "native/dalvik_system_VMDebug.cc",
150 "native/dalvik_system_VMRuntime.cc",
151 "native/dalvik_system_VMStack.cc",
152 "native/dalvik_system_ZygoteHooks.cc",
153 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700154 "native/java_lang_Object.cc",
155 "native/java_lang_String.cc",
156 "native/java_lang_StringFactory.cc",
157 "native/java_lang_System.cc",
158 "native/java_lang_Thread.cc",
159 "native/java_lang_Throwable.cc",
160 "native/java_lang_VMClassLoader.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000161 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700162 "native/java_lang_ref_FinalizerReference.cc",
163 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700164 "native/java_lang_reflect_Array.cc",
165 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100166 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700167 "native/java_lang_reflect_Field.cc",
168 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100169 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700170 "native/java_lang_reflect_Proxy.cc",
171 "native/java_util_concurrent_atomic_AtomicLong.cc",
172 "native/libcore_util_CharsetUtils.cc",
173 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
174 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
175 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800176 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700177 "oat.cc",
178 "oat_file.cc",
179 "oat_file_assistant.cc",
180 "oat_file_manager.cc",
181 "oat_quick_method_header.cc",
182 "object_lock.cc",
183 "offsets.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700184 "parsed_options.cc",
185 "plugin.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700186 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700187 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700188 "reference_table.cc",
189 "reflection.cc",
190 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000191 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000192 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000193 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700194 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700195 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700196 "signal_catcher.cc",
197 "stack.cc",
198 "stack_map.cc",
199 "thread.cc",
200 "thread_list.cc",
201 "thread_pool.cc",
202 "ti/agent.cc",
203 "trace.cc",
204 "transaction.cc",
205 "type_lookup_table.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100206 "vdex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700207 "verifier/instruction_flags.cc",
208 "verifier/method_verifier.cc",
209 "verifier/reg_type.cc",
210 "verifier/reg_type_cache.cc",
211 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100212 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800213 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700214 "well_known_classes.cc",
215 "zip_archive.cc",
216
217 "arch/context.cc",
218 "arch/instruction_set.cc",
219 "arch/instruction_set_features.cc",
220 "arch/memcmp16.cc",
221 "arch/arm/instruction_set_features_arm.cc",
222 "arch/arm/registers_arm.cc",
223 "arch/arm64/instruction_set_features_arm64.cc",
224 "arch/arm64/registers_arm64.cc",
225 "arch/mips/instruction_set_features_mips.cc",
226 "arch/mips/registers_mips.cc",
227 "arch/mips64/instruction_set_features_mips64.cc",
228 "arch/mips64/registers_mips64.cc",
229 "arch/x86/instruction_set_features_x86.cc",
230 "arch/x86/registers_x86.cc",
231 "arch/x86_64/registers_x86_64.cc",
232 "entrypoints/entrypoint_utils.cc",
233 "entrypoints/jni/jni_entrypoints.cc",
234 "entrypoints/math_entrypoints.cc",
235 "entrypoints/quick/quick_alloc_entrypoints.cc",
236 "entrypoints/quick/quick_cast_entrypoints.cc",
237 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
238 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000239 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700240 "entrypoints/quick/quick_field_entrypoints.cc",
241 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700242 "entrypoints/quick/quick_jni_entrypoints.cc",
243 "entrypoints/quick/quick_lock_entrypoints.cc",
244 "entrypoints/quick/quick_math_entrypoints.cc",
245 "entrypoints/quick/quick_thread_entrypoints.cc",
246 "entrypoints/quick/quick_throw_entrypoints.cc",
247 "entrypoints/quick/quick_trampoline_entrypoints.cc",
248 ],
249
250 arch: {
251 arm: {
252 clang_asflags: ["-no-integrated-as"],
253 srcs: [
254 "interpreter/mterp/mterp.cc",
255 "interpreter/mterp/out/mterp_arm.S",
256 "arch/arm/context_arm.cc",
257 "arch/arm/entrypoints_init_arm.cc",
258 "arch/arm/instruction_set_features_assembly_tests.S",
259 "arch/arm/jni_entrypoints_arm.S",
260 "arch/arm/memcmp16_arm.S",
261 "arch/arm/quick_entrypoints_arm.S",
262 "arch/arm/quick_entrypoints_cc_arm.cc",
263 "arch/arm/thread_arm.cc",
264 "arch/arm/fault_handler_arm.cc",
265 ],
266 },
267 arm64: {
268 srcs: [
269 "interpreter/mterp/mterp.cc",
270 "interpreter/mterp/out/mterp_arm64.S",
271 "arch/arm64/context_arm64.cc",
272 "arch/arm64/entrypoints_init_arm64.cc",
273 "arch/arm64/jni_entrypoints_arm64.S",
274 "arch/arm64/memcmp16_arm64.S",
275 "arch/arm64/quick_entrypoints_arm64.S",
276 "arch/arm64/thread_arm64.cc",
277 "monitor_pool.cc",
278 "arch/arm64/fault_handler_arm64.cc",
279 ],
280 },
281 x86: {
282 srcs: [
283 "interpreter/mterp/mterp.cc",
284 "interpreter/mterp/out/mterp_x86.S",
285 "arch/x86/context_x86.cc",
286 "arch/x86/entrypoints_init_x86.cc",
287 "arch/x86/jni_entrypoints_x86.S",
288 "arch/x86/memcmp16_x86.S",
289 "arch/x86/quick_entrypoints_x86.S",
290 "arch/x86/thread_x86.cc",
291 "arch/x86/fault_handler_x86.cc",
292 ],
293 },
294 x86_64: {
295 srcs: [
296 // Note that the fault_handler_x86.cc is not a mistake. This file is
297 // shared between the x86 and x86_64 architectures.
298 "interpreter/mterp/mterp.cc",
299 "interpreter/mterp/out/mterp_x86_64.S",
300 "arch/x86_64/context_x86_64.cc",
301 "arch/x86_64/entrypoints_init_x86_64.cc",
302 "arch/x86_64/jni_entrypoints_x86_64.S",
303 "arch/x86_64/memcmp16_x86_64.S",
304 "arch/x86_64/quick_entrypoints_x86_64.S",
305 "arch/x86_64/thread_x86_64.cc",
306 "monitor_pool.cc",
307 "arch/x86/fault_handler_x86.cc",
308 ],
309 },
310 mips: {
311 srcs: [
312 "interpreter/mterp/mterp.cc",
313 "interpreter/mterp/out/mterp_mips.S",
314 "arch/mips/context_mips.cc",
315 "arch/mips/entrypoints_init_mips.cc",
316 "arch/mips/jni_entrypoints_mips.S",
317 "arch/mips/memcmp16_mips.S",
318 "arch/mips/quick_entrypoints_mips.S",
319 "arch/mips/thread_mips.cc",
320 "arch/mips/fault_handler_mips.cc",
321 ],
322 },
323 mips64: {
324 srcs: [
325 "interpreter/mterp/mterp.cc",
326 "interpreter/mterp/out/mterp_mips64.S",
327 "arch/mips64/context_mips64.cc",
328 "arch/mips64/entrypoints_init_mips64.cc",
329 "arch/mips64/jni_entrypoints_mips64.S",
330 "arch/mips64/memcmp16_mips64.S",
331 "arch/mips64/quick_entrypoints_mips64.S",
332 "arch/mips64/thread_mips64.cc",
333 "monitor_pool.cc",
334 "arch/mips64/fault_handler_mips64.cc",
335 ],
336 },
337 },
338 target: {
339 android: {
340 srcs: [
341 "jdwp/jdwp_adb.cc",
342 "monitor_android.cc",
343 "runtime_android.cc",
344 "thread_android.cc",
345 ],
346 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700347 // For android::FileMap used by libziparchive.
348 "libutils",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700349 "libtombstoned_client",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700350 ],
351 static_libs: [
352 // ZipArchive support, the order matters here to get all symbols.
353 "libziparchive",
354 "libz",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700355 ],
356 },
357 android_arm: {
358 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
359 },
360 android_arm64: {
361 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
362 },
363 android_x86: {
364 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
365 },
366 android_x86_64: {
367 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
368 },
369 host: {
370 srcs: [
371 "monitor_linux.cc",
372 "runtime_linux.cc",
373 "thread_linux.cc",
374 ],
375 shared_libs: [
376 "libziparchive",
Dan Willemsen0e503b52017-09-27 16:05:49 -0700377 "libz",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700378 ],
379 },
380 },
381 cflags: ["-DBUILDING_LIBART=1"],
382 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800383 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
384 generated_headers: ["cpp-define-generator-asm-support"],
385 // export our headers so the libart-gtest targets can use it as well.
386 export_generated_headers: ["cpp-define-generator-asm-support"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700387 include_dirs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700388 "art/sigchainlib",
Andreas Gampefdb7a612017-11-01 15:11:13 -0700389 "external/icu/icu4c/source/common",
Andreas Gampef24dfb02017-11-01 15:41:25 -0700390 "external/lz4/lib",
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700391 "external/zlib",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700392 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700393 header_libs: [
394 "art_cmdlineparser_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700395 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700396 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700397 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700398 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700399 "libnativebridge",
400 "libnativeloader",
401 "libbacktrace",
402 "liblz4",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700403 "liblog",
404 // For atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700405 "libcutils",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700406 // For common macros.
407 "libbase",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700408 ],
409 static: {
410 static_libs: ["libsigchain_dummy"],
411 },
412 shared: {
413 shared_libs: ["libsigchain"],
414 },
415 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700416 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700417 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
418 // generically. dex2oat takes care of it itself.
David Sehrfcbe15c2018-02-15 09:41:13 -0800419 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700420}
421
422gensrcs {
423 name: "art_operator_srcs",
Alex Lightb69d2d32018-02-21 13:37:17 -0800424 cmd: "$(location generate_operator_out) art/runtime $(in) > $(out)",
425 tools: ["generate_operator_out"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700426 srcs: [
427 "arch/instruction_set.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700428 "base/mutex.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700429 "class_status.h",
David Sehr334b9d72018-02-12 18:27:56 -0800430 "debugger.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700431 "gc_root.h",
432 "gc/allocator_type.h",
433 "gc/allocator/rosalloc.h",
434 "gc/collector_type.h",
435 "gc/collector/gc_type.h",
436 "gc/heap.h",
437 "gc/space/region_space.h",
438 "gc/space/space.h",
439 "gc/weak_root_state.h",
440 "image.h",
441 "instrumentation.h",
442 "indirect_reference_table.h",
Alex Light40320712017-12-14 11:52:04 -0800443 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700444 "jdwp/jdwp.h",
445 "jdwp/jdwp_constants.h",
446 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700447 "oat.h",
448 "object_callbacks.h",
449 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700450 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700451 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700452 "thread.h",
453 "thread_state.h",
454 "ti/agent.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700455 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700456 ],
457 output_extension: "operator_out.cc",
458}
459
460// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
461// they are used to cross compile for the target.
462
463art_cc_library {
464 name: "libart",
465 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700466 // Leave the symbols in the shared library so that stack unwinders can
467 // produce meaningful name resolution.
468 strip: {
469 keep_symbols: true,
470 },
David Sehrc431b9d2018-03-02 12:01:51 -0800471 whole_static_libs: [
472 "libartbase",
473 ],
474 shared_libs: [
475 "libdexfile",
476 ],
477 export_shared_lib_headers: [
478 "libdexfile",
479 ],
Yi Kongfd8bb932018-03-12 16:52:57 -0700480 target: {
481 android: {
482 lto: {
483 thin: true,
484 },
485 },
486 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700487}
488
489art_cc_library {
490 name: "libartd",
491 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700492 "art_debug_defaults",
493 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700494 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800495 whole_static_libs: [
496 "libartbased",
497 ],
498 shared_libs: [
499 "libdexfiled",
500 ],
501 export_shared_lib_headers: [
502 "libdexfiled",
503 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700504}
505
Colin Cross6b22aa52016-09-12 14:35:39 -0700506art_cc_library {
507 name: "libart-runtime-gtest",
508 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800509 srcs: [
510 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700511 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800512 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700513 shared_libs: [
514 "libartd",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700515 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700516 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700517 ],
518 header_libs: [
519 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700520 ],
Andreas Gampefdb7a612017-11-01 15:11:13 -0700521 include_dirs: [
522 "external/icu/icu4c/source/common",
523 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700524}
525
Colin Cross6e95dd52016-09-12 15:37:10 -0700526art_cc_test {
527 name: "art_runtime_tests",
528 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700529 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700530 ],
531 srcs: [
532 "arch/arch_test.cc",
533 "arch/instruction_set_test.cc",
534 "arch/instruction_set_features_test.cc",
535 "arch/memcmp16_test.cc",
536 "arch/stub_test.cc",
537 "arch/arm/instruction_set_features_arm_test.cc",
538 "arch/arm64/instruction_set_features_arm64_test.cc",
539 "arch/mips/instruction_set_features_mips_test.cc",
540 "arch/mips64/instruction_set_features_mips64_test.cc",
541 "arch/x86/instruction_set_features_x86_test.cc",
542 "arch/x86_64/instruction_set_features_x86_64_test.cc",
543 "barrier_test.cc",
544 "base/arena_allocator_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800545 "base/file_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700546 "base/mutex_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700547 "base/timing_logger_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700548 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700549 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700550 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800551 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700552 "compiler_filter_test.cc",
David Sehr139512d2018-02-08 15:44:50 -0800553 "dex/art_dex_file_loader_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700554 "entrypoints/math_entrypoints_test.cc",
555 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
556 "entrypoints_order_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800557 "exec_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700558 "gc/accounting/card_table_test.cc",
559 "gc/accounting/mod_union_table_test.cc",
560 "gc/accounting/space_bitmap_test.cc",
561 "gc/collector/immune_spaces_test.cc",
562 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700563 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700564 "gc/reference_queue_test.cc",
565 "gc/space/dlmalloc_space_static_test.cc",
566 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000567 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700568 "gc/space/large_object_space_test.cc",
569 "gc/space/rosalloc_space_static_test.cc",
570 "gc/space/rosalloc_space_random_test.cc",
571 "gc/space/space_create_test.cc",
572 "gc/system_weak_test.cc",
573 "gc/task_processor_test.cc",
574 "gtest_test.cc",
575 "handle_scope_test.cc",
Mathew Inwood7d74ef52018-03-16 14:18:33 +0000576 "hidden_api_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700577 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700578 "indenter_test.cc",
579 "indirect_reference_table_test.cc",
580 "instrumentation_test.cc",
581 "intern_table_test.cc",
582 "interpreter/safe_math_test.cc",
583 "interpreter/unstarted_runtime_test.cc",
Alex Light40320712017-12-14 11:52:04 -0800584 "jdwp/jdwp_options_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700585 "java_vm_ext_test.cc",
586 "jit/profile_compilation_info_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700587 "mem_map_test.cc",
588 "memory_region_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000589 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700590 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100591 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700592 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100593 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700594 "monitor_pool_test.cc",
595 "monitor_test.cc",
596 "oat_file_test.cc",
597 "oat_file_assistant_test.cc",
598 "parsed_options_test.cc",
599 "prebuilt_tools_test.cc",
600 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000601 "runtime_callbacks_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700602 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700603 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700604 "thread_pool_test.cc",
605 "transaction_test.cc",
606 "type_lookup_table_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000607 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700608 "verifier/method_verifier_test.cc",
609 "verifier/reg_type_test.cc",
610 "zip_archive_test.cc",
611 ],
612 shared_libs: [
613 "libbacktrace",
Calin Juravle1e2de642018-01-18 01:08:23 -0800614 "libziparchive",
Colin Cross6e95dd52016-09-12 15:37:10 -0700615 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700616 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700617 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700618 ],
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700619 include_dirs: [
620 "external/zlib",
621 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700622}
623
624art_cc_test {
625 name: "art_runtime_compiler_tests",
626 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700627 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700628 ],
629 srcs: [
630 "jni_internal_test.cc",
631 "proxy_test.cc",
632 "reflection_test.cc",
633 ],
634 shared_libs: [
635 "libartd-compiler",
636 "libvixld-arm",
637 "libvixld-arm64",
638 ],
639}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700640
641cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700642 name: "libart_runtime_headers",
643 host_supported: true,
644 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700645}