blob: 30595335f06cf5eb6db1f2c182bbe49716d59e21 [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
17// 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.
21JIT_DEBUG_REGISTER_CODE_LDFLAGS = ["-Wl,--keep-unique,__jit_debug_register_code"]
22
23cc_defaults {
24 name: "libart_defaults",
25 defaults: ["art_defaults"],
26 host_supported: true,
27 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -070028 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070029 "art_field.cc",
30 "art_method.cc",
31 "atomic.cc",
32 "barrier.cc",
33 "base/allocator.cc",
34 "base/arena_allocator.cc",
35 "base/arena_bit_vector.cc",
36 "base/bit_vector.cc",
37 "base/file_magic.cc",
38 "base/hex_dump.cc",
39 "base/logging.cc",
40 "base/mutex.cc",
Josh Gao682282e2017-04-17 18:31:26 -070041 "base/safe_copy.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070042 "base/scoped_arena_allocator.cc",
43 "base/scoped_flock.cc",
44 "base/stringpiece.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070045 "base/time_utils.cc",
46 "base/timing_logger.cc",
47 "base/unix_file/fd_file.cc",
48 "base/unix_file/random_access_file_utils.cc",
Mathieu Chartiercf76bf82017-09-25 16:22:36 -070049 "cdex/compact_dex_file.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070050 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070051 "check_jni.cc",
52 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070053 "class_loader_context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070054 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070055 "common_throws.cc",
56 "compiler_filter.cc",
57 "debugger.cc",
58 "dex_file.cc",
Mathieu Chartier79c87da2017-10-10 11:54:29 -070059 "dex_file_loader.cc",
David Sehr9323e6e2016-09-13 08:58:35 -070060 "dex_file_annotations.cc",
Mathieu Chartier120aa282017-08-05 16:03:03 -070061 "dex_file_layout.cc",
62 "dex_file_tracking_registrar.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070063 "dex_file_verifier.cc",
64 "dex_instruction.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010065 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070066 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080067 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070068 "fault_handler.cc",
69 "gc/allocation_record.cc",
70 "gc/allocator/dlmalloc.cc",
71 "gc/allocator/rosalloc.cc",
72 "gc/accounting/bitmap.cc",
73 "gc/accounting/card_table.cc",
74 "gc/accounting/heap_bitmap.cc",
75 "gc/accounting/mod_union_table.cc",
76 "gc/accounting/remembered_set.cc",
77 "gc/accounting/space_bitmap.cc",
78 "gc/collector/concurrent_copying.cc",
79 "gc/collector/garbage_collector.cc",
80 "gc/collector/immune_region.cc",
81 "gc/collector/immune_spaces.cc",
82 "gc/collector/mark_compact.cc",
83 "gc/collector/mark_sweep.cc",
84 "gc/collector/partial_mark_sweep.cc",
85 "gc/collector/semi_space.cc",
86 "gc/collector/sticky_mark_sweep.cc",
87 "gc/gc_cause.cc",
88 "gc/heap.cc",
89 "gc/reference_processor.cc",
90 "gc/reference_queue.cc",
91 "gc/scoped_gc_critical_section.cc",
92 "gc/space/bump_pointer_space.cc",
93 "gc/space/dlmalloc_space.cc",
94 "gc/space/image_space.cc",
95 "gc/space/large_object_space.cc",
96 "gc/space/malloc_space.cc",
97 "gc/space/region_space.cc",
98 "gc/space/rosalloc_space.cc",
99 "gc/space/space.cc",
100 "gc/space/zygote_space.cc",
101 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700102 "gc/verification.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700103 "hprof/hprof.cc",
104 "image.cc",
105 "indirect_reference_table.cc",
106 "instrumentation.cc",
107 "intern_table.cc",
108 "interpreter/interpreter.cc",
109 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -0800110 "interpreter/interpreter_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700111 "interpreter/interpreter_switch_impl.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700112 "interpreter/lock_count_data.cc",
113 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700114 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700115 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700116 "java_vm_ext.cc",
117 "jdwp/jdwp_event.cc",
118 "jdwp/jdwp_expand_buf.cc",
119 "jdwp/jdwp_handler.cc",
120 "jdwp/jdwp_main.cc",
121 "jdwp/jdwp_request.cc",
122 "jdwp/jdwp_socket.cc",
123 "jdwp/object_registry.cc",
124 "jni_env_ext.cc",
125 "jit/debugger_interface.cc",
126 "jit/jit.cc",
127 "jit/jit_code_cache.cc",
Calin Juravle33083d62017-01-18 15:29:12 -0800128 "jit/profile_compilation_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700129 "jit/profiling_info.cc",
130 "jit/profile_saver.cc",
131 "jni_internal.cc",
132 "jobject_comparator.cc",
133 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700134 "managed_stack.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700135 "mem_map.cc",
136 "memory_region.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100137 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700138 "mirror/array.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000139 "mirror/call_site.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700140 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700141 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700142 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100143 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100144 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700145 "mirror/field.cc",
146 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100147 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000148 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100149 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700150 "mirror/object.cc",
151 "mirror/reference.cc",
152 "mirror/stack_trace_element.cc",
153 "mirror/string.cc",
154 "mirror/throwable.cc",
155 "monitor.cc",
156 "native_bridge_art_interface.cc",
157 "native_stack_dump.cc",
158 "native/dalvik_system_DexFile.cc",
159 "native/dalvik_system_VMDebug.cc",
160 "native/dalvik_system_VMRuntime.cc",
161 "native/dalvik_system_VMStack.cc",
162 "native/dalvik_system_ZygoteHooks.cc",
163 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700164 "native/java_lang_Object.cc",
165 "native/java_lang_String.cc",
166 "native/java_lang_StringFactory.cc",
167 "native/java_lang_System.cc",
168 "native/java_lang_Thread.cc",
169 "native/java_lang_Throwable.cc",
170 "native/java_lang_VMClassLoader.cc",
Vladimir Markoe00e5592017-02-24 14:58:29 +0000171 "native/java_lang_Void.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000172 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700173 "native/java_lang_ref_FinalizerReference.cc",
174 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700175 "native/java_lang_reflect_Array.cc",
176 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100177 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700178 "native/java_lang_reflect_Field.cc",
179 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100180 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700181 "native/java_lang_reflect_Proxy.cc",
182 "native/java_util_concurrent_atomic_AtomicLong.cc",
183 "native/libcore_util_CharsetUtils.cc",
184 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
185 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
186 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800187 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700188 "oat.cc",
189 "oat_file.cc",
190 "oat_file_assistant.cc",
191 "oat_file_manager.cc",
192 "oat_quick_method_header.cc",
193 "object_lock.cc",
194 "offsets.cc",
195 "os_linux.cc",
196 "parsed_options.cc",
197 "plugin.cc",
198 "primitive.cc",
199 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700200 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700201 "reference_table.cc",
202 "reflection.cc",
203 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000204 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000205 "runtime_common.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700206 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700207 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700208 "signal_catcher.cc",
209 "stack.cc",
210 "stack_map.cc",
Mathieu Chartier292567e2017-10-12 13:24:38 -0700211 "standard_dex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700212 "thread.cc",
213 "thread_list.cc",
214 "thread_pool.cc",
215 "ti/agent.cc",
216 "trace.cc",
217 "transaction.cc",
218 "type_lookup_table.cc",
219 "utf.cc",
220 "utils.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100221 "vdex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700222 "verifier/instruction_flags.cc",
223 "verifier/method_verifier.cc",
224 "verifier/reg_type.cc",
225 "verifier/reg_type_cache.cc",
226 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100227 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800228 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700229 "well_known_classes.cc",
230 "zip_archive.cc",
231
232 "arch/context.cc",
233 "arch/instruction_set.cc",
234 "arch/instruction_set_features.cc",
235 "arch/memcmp16.cc",
236 "arch/arm/instruction_set_features_arm.cc",
237 "arch/arm/registers_arm.cc",
238 "arch/arm64/instruction_set_features_arm64.cc",
239 "arch/arm64/registers_arm64.cc",
240 "arch/mips/instruction_set_features_mips.cc",
241 "arch/mips/registers_mips.cc",
242 "arch/mips64/instruction_set_features_mips64.cc",
243 "arch/mips64/registers_mips64.cc",
244 "arch/x86/instruction_set_features_x86.cc",
245 "arch/x86/registers_x86.cc",
246 "arch/x86_64/registers_x86_64.cc",
247 "entrypoints/entrypoint_utils.cc",
248 "entrypoints/jni/jni_entrypoints.cc",
249 "entrypoints/math_entrypoints.cc",
250 "entrypoints/quick/quick_alloc_entrypoints.cc",
251 "entrypoints/quick/quick_cast_entrypoints.cc",
252 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
253 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000254 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700255 "entrypoints/quick/quick_field_entrypoints.cc",
256 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700257 "entrypoints/quick/quick_jni_entrypoints.cc",
258 "entrypoints/quick/quick_lock_entrypoints.cc",
259 "entrypoints/quick/quick_math_entrypoints.cc",
260 "entrypoints/quick/quick_thread_entrypoints.cc",
261 "entrypoints/quick/quick_throw_entrypoints.cc",
262 "entrypoints/quick/quick_trampoline_entrypoints.cc",
263 ],
264
265 arch: {
266 arm: {
267 clang_asflags: ["-no-integrated-as"],
268 srcs: [
269 "interpreter/mterp/mterp.cc",
270 "interpreter/mterp/out/mterp_arm.S",
271 "arch/arm/context_arm.cc",
272 "arch/arm/entrypoints_init_arm.cc",
273 "arch/arm/instruction_set_features_assembly_tests.S",
274 "arch/arm/jni_entrypoints_arm.S",
275 "arch/arm/memcmp16_arm.S",
276 "arch/arm/quick_entrypoints_arm.S",
277 "arch/arm/quick_entrypoints_cc_arm.cc",
278 "arch/arm/thread_arm.cc",
279 "arch/arm/fault_handler_arm.cc",
280 ],
281 },
282 arm64: {
283 srcs: [
284 "interpreter/mterp/mterp.cc",
285 "interpreter/mterp/out/mterp_arm64.S",
286 "arch/arm64/context_arm64.cc",
287 "arch/arm64/entrypoints_init_arm64.cc",
288 "arch/arm64/jni_entrypoints_arm64.S",
289 "arch/arm64/memcmp16_arm64.S",
290 "arch/arm64/quick_entrypoints_arm64.S",
291 "arch/arm64/thread_arm64.cc",
292 "monitor_pool.cc",
293 "arch/arm64/fault_handler_arm64.cc",
294 ],
295 },
296 x86: {
297 srcs: [
298 "interpreter/mterp/mterp.cc",
299 "interpreter/mterp/out/mterp_x86.S",
300 "arch/x86/context_x86.cc",
301 "arch/x86/entrypoints_init_x86.cc",
302 "arch/x86/jni_entrypoints_x86.S",
303 "arch/x86/memcmp16_x86.S",
304 "arch/x86/quick_entrypoints_x86.S",
305 "arch/x86/thread_x86.cc",
306 "arch/x86/fault_handler_x86.cc",
307 ],
308 },
309 x86_64: {
310 srcs: [
311 // Note that the fault_handler_x86.cc is not a mistake. This file is
312 // shared between the x86 and x86_64 architectures.
313 "interpreter/mterp/mterp.cc",
314 "interpreter/mterp/out/mterp_x86_64.S",
315 "arch/x86_64/context_x86_64.cc",
316 "arch/x86_64/entrypoints_init_x86_64.cc",
317 "arch/x86_64/jni_entrypoints_x86_64.S",
318 "arch/x86_64/memcmp16_x86_64.S",
319 "arch/x86_64/quick_entrypoints_x86_64.S",
320 "arch/x86_64/thread_x86_64.cc",
321 "monitor_pool.cc",
322 "arch/x86/fault_handler_x86.cc",
323 ],
324 },
325 mips: {
326 srcs: [
327 "interpreter/mterp/mterp.cc",
328 "interpreter/mterp/out/mterp_mips.S",
329 "arch/mips/context_mips.cc",
330 "arch/mips/entrypoints_init_mips.cc",
331 "arch/mips/jni_entrypoints_mips.S",
332 "arch/mips/memcmp16_mips.S",
333 "arch/mips/quick_entrypoints_mips.S",
334 "arch/mips/thread_mips.cc",
335 "arch/mips/fault_handler_mips.cc",
336 ],
337 },
338 mips64: {
339 srcs: [
340 "interpreter/mterp/mterp.cc",
341 "interpreter/mterp/out/mterp_mips64.S",
342 "arch/mips64/context_mips64.cc",
343 "arch/mips64/entrypoints_init_mips64.cc",
344 "arch/mips64/jni_entrypoints_mips64.S",
345 "arch/mips64/memcmp16_mips64.S",
346 "arch/mips64/quick_entrypoints_mips64.S",
347 "arch/mips64/thread_mips64.cc",
348 "monitor_pool.cc",
349 "arch/mips64/fault_handler_mips64.cc",
350 ],
351 },
352 },
353 target: {
354 android: {
355 srcs: [
356 "jdwp/jdwp_adb.cc",
357 "monitor_android.cc",
358 "runtime_android.cc",
359 "thread_android.cc",
360 ],
361 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700362 // For android::FileMap used by libziparchive.
363 "libutils",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700364 "libtombstoned_client",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700365 ],
366 static_libs: [
367 // ZipArchive support, the order matters here to get all symbols.
368 "libziparchive",
369 "libz",
370 "libbase",
371 ],
372 },
373 android_arm: {
374 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
375 },
376 android_arm64: {
377 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
378 },
379 android_x86: {
380 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
381 },
382 android_x86_64: {
383 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
384 },
385 host: {
386 srcs: [
387 "monitor_linux.cc",
388 "runtime_linux.cc",
389 "thread_linux.cc",
390 ],
391 shared_libs: [
392 "libziparchive",
Dan Willemsen0e503b52017-09-27 16:05:49 -0700393 "libz",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700394 ],
395 },
396 },
397 cflags: ["-DBUILDING_LIBART=1"],
398 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800399 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
400 generated_headers: ["cpp-define-generator-asm-support"],
401 // export our headers so the libart-gtest targets can use it as well.
402 export_generated_headers: ["cpp-define-generator-asm-support"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700403 include_dirs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700404 "art/sigchainlib",
405 "art",
406 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700407 header_libs: [
408 "art_cmdlineparser_headers",
409 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700410 shared_libs: [
411 "libnativehelper",
412 "libnativebridge",
413 "libnativeloader",
414 "libbacktrace",
415 "liblz4",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700416 "liblog",
417 // For atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700418 "libcutils",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700419 // For common macros.
420 "libbase",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700421 ],
422 static: {
423 static_libs: ["libsigchain_dummy"],
424 },
425 shared: {
426 shared_libs: ["libsigchain"],
427 },
428 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700429 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700430 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
431 // generically. dex2oat takes care of it itself.
Andreas Gampeaaadff82016-08-29 09:53:48 -0700432 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700433}
434
435gensrcs {
436 name: "art_operator_srcs",
Colin Crossf657ed02016-11-04 15:31:17 -0700437 cmd: "$(location generate-operator-out.py) art/runtime $(in) > $(out)",
438 tool_files: ["generate-operator-out.py"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700439 srcs: [
440 "arch/instruction_set.h",
441 "base/allocator.h",
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700442 "base/callee_save_type.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700443 "base/enums.h",
444 "base/mutex.h",
445 "debugger.h",
446 "base/unix_file/fd_file.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700447 "class_status.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700448 "dex_file.h",
Mathieu Chartier120aa282017-08-05 16:03:03 -0700449 "dex_file_layout.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700450 "dex_instruction.h",
451 "dex_instruction_utils.h",
452 "gc_root.h",
453 "gc/allocator_type.h",
454 "gc/allocator/rosalloc.h",
455 "gc/collector_type.h",
456 "gc/collector/gc_type.h",
457 "gc/heap.h",
458 "gc/space/region_space.h",
459 "gc/space/space.h",
460 "gc/weak_root_state.h",
461 "image.h",
462 "instrumentation.h",
463 "indirect_reference_table.h",
464 "invoke_type.h",
465 "jdwp/jdwp.h",
466 "jdwp/jdwp_constants.h",
467 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700468 "oat.h",
469 "object_callbacks.h",
470 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700471 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700472 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700473 "thread.h",
474 "thread_state.h",
475 "ti/agent.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700476 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700477 ],
478 output_extension: "operator_out.cc",
479}
480
481// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
482// they are used to cross compile for the target.
483
484art_cc_library {
485 name: "libart",
486 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700487 // Leave the symbols in the shared library so that stack unwinders can
488 // produce meaningful name resolution.
489 strip: {
490 keep_symbols: true,
491 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700492}
493
494art_cc_library {
495 name: "libartd",
496 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700497 "art_debug_defaults",
498 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700499 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700500}
501
Colin Cross6b22aa52016-09-12 14:35:39 -0700502art_cc_library {
503 name: "libart-runtime-gtest",
504 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800505 srcs: [
506 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700507 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800508 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700509 shared_libs: [
510 "libartd",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700511 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700512 "libbacktrace",
Andreas Gampe2b51edd2017-10-18 13:15:02 -0700513 "libnativehelper",
Colin Cross6b22aa52016-09-12 14:35:39 -0700514 ],
515}
516
Colin Cross6e95dd52016-09-12 15:37:10 -0700517art_cc_test {
518 name: "art_runtime_tests",
519 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700520 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700521 ],
522 srcs: [
523 "arch/arch_test.cc",
524 "arch/instruction_set_test.cc",
525 "arch/instruction_set_features_test.cc",
526 "arch/memcmp16_test.cc",
527 "arch/stub_test.cc",
528 "arch/arm/instruction_set_features_arm_test.cc",
529 "arch/arm64/instruction_set_features_arm64_test.cc",
530 "arch/mips/instruction_set_features_mips_test.cc",
531 "arch/mips64/instruction_set_features_mips64_test.cc",
532 "arch/x86/instruction_set_features_x86_test.cc",
533 "arch/x86_64/instruction_set_features_x86_64_test.cc",
534 "barrier_test.cc",
535 "base/arena_allocator_test.cc",
536 "base/bit_field_test.cc",
Igor Murashkin44559f22017-10-27 10:43:08 -0700537 "base/bit_string_test.cc",
Igor Murashkin1e77d272017-10-07 14:09:43 +0000538 "base/bit_struct_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700539 "base/bit_utils_test.cc",
540 "base/bit_vector_test.cc",
541 "base/hash_set_test.cc",
542 "base/hex_dump_test.cc",
543 "base/histogram_test.cc",
Andreas Gampe1c5b42f2017-06-15 18:20:45 -0700544 "base/logging_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700545 "base/mutex_test.cc",
Josh Gao682282e2017-04-17 18:31:26 -0700546 "base/safe_copy_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700547 "base/scoped_flock_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700548 "base/time_utils_test.cc",
549 "base/timing_logger_test.cc",
550 "base/transform_array_ref_test.cc",
551 "base/transform_iterator_test.cc",
552 "base/variant_map_test.cc",
553 "base/unix_file/fd_file_test.cc",
Mathieu Chartiercf76bf82017-09-25 16:22:36 -0700554 "cdex/compact_dex_file_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700555 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700556 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700557 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800558 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700559 "compiler_filter_test.cc",
560 "dex_file_test.cc",
561 "dex_file_verifier_test.cc",
562 "dex_instruction_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700563 "entrypoints/math_entrypoints_test.cc",
564 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
565 "entrypoints_order_test.cc",
566 "gc/accounting/card_table_test.cc",
567 "gc/accounting/mod_union_table_test.cc",
568 "gc/accounting/space_bitmap_test.cc",
569 "gc/collector/immune_spaces_test.cc",
570 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700571 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700572 "gc/reference_queue_test.cc",
573 "gc/space/dlmalloc_space_static_test.cc",
574 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000575 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700576 "gc/space/large_object_space_test.cc",
577 "gc/space/rosalloc_space_static_test.cc",
578 "gc/space/rosalloc_space_random_test.cc",
579 "gc/space/space_create_test.cc",
580 "gc/system_weak_test.cc",
581 "gc/task_processor_test.cc",
582 "gtest_test.cc",
583 "handle_scope_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700584 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700585 "indenter_test.cc",
586 "indirect_reference_table_test.cc",
587 "instrumentation_test.cc",
588 "intern_table_test.cc",
589 "interpreter/safe_math_test.cc",
590 "interpreter/unstarted_runtime_test.cc",
591 "java_vm_ext_test.cc",
592 "jit/profile_compilation_info_test.cc",
593 "leb128_test.cc",
594 "mem_map_test.cc",
595 "memory_region_test.cc",
596 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100597 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700598 "mirror/object_test.cc",
599 "monitor_pool_test.cc",
600 "monitor_test.cc",
601 "oat_file_test.cc",
602 "oat_file_assistant_test.cc",
603 "parsed_options_test.cc",
604 "prebuilt_tools_test.cc",
605 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000606 "runtime_callbacks_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700607 "thread_pool_test.cc",
608 "transaction_test.cc",
609 "type_lookup_table_test.cc",
610 "utf_test.cc",
611 "utils_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000612 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700613 "verifier/method_verifier_test.cc",
614 "verifier/reg_type_test.cc",
615 "zip_archive_test.cc",
616 ],
617 shared_libs: [
618 "libbacktrace",
619 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700620 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700621 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700622 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700623}
624
625art_cc_test {
626 name: "art_runtime_compiler_tests",
627 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700628 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700629 ],
630 srcs: [
631 "jni_internal_test.cc",
632 "proxy_test.cc",
633 "reflection_test.cc",
634 ],
635 shared_libs: [
636 "libartd-compiler",
637 "libvixld-arm",
638 "libvixld-arm64",
639 ],
640}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700641
642cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700643 name: "libart_runtime_headers",
644 host_supported: true,
645 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700646}