blob: 2e34bafd545c5c940ecbe9de24faf84af3700f06 [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 {
David Sehr013fd802018-01-11 22:55:24 -080024 name: "libdexfile_defaults",
25 defaults: ["art_defaults"],
26 host_supported: true,
27 srcs: [
Mathieu Chartier8892c6b2018-01-09 15:10:17 -080028 "dex/compact_dex_debug_info.cc",
David Sehr013fd802018-01-11 22:55:24 -080029 "dex/compact_dex_file.cc",
30 "dex/dex_file.cc",
31 "dex/dex_file_exception_helpers.cc",
32 "dex/dex_file_loader.cc",
33 "dex/dex_file_tracking_registrar.cc",
34 "dex/dex_file_verifier.cc",
35 "dex/dex_instruction.cc",
36 "dex/standard_dex_file.cc",
37 "utf.cc",
38 "utils.cc",
39 ],
40
41 target: {
42 android: {
43 shared_libs: [
44 "libutils",
45 ],
46 static_libs: [
47 "libz",
48 "libbase",
49 ],
50 },
51 host: {
52 shared_libs: [
53 "libz",
54 ],
55 },
56 },
57 generated_sources: ["art_operator_srcs"],
58 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
59 generated_headers: ["cpp-define-generator-asm-support"],
60 // export our headers so the libart-gtest targets can use it as well.
61 export_generated_headers: ["cpp-define-generator-asm-support"],
62 include_dirs: [
63 "external/icu/icu4c/source/common",
64 "external/zlib",
65 ],
66 shared_libs: [
67 "liblog",
68 // For common macros.
69 "libbase",
70 ],
71 export_include_dirs: ["."],
72 // ART's macros.h depends on libbase's macros.h.
73 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
74 // generically. dex2oat takes care of it itself.
75 export_shared_lib_headers: ["libbase"],
76}
77
78art_cc_library {
79 name: "libdexfile",
80 defaults: ["libdexfile_defaults"],
81 // Leave the symbols in the shared library so that stack unwinders can
82 // produce meaningful name resolution.
83 strip: {
84 keep_symbols: true,
85 },
86}
87
88cc_defaults {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070089 name: "libart_defaults",
90 defaults: ["art_defaults"],
91 host_supported: true,
92 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -070093 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070094 "art_field.cc",
95 "art_method.cc",
96 "atomic.cc",
97 "barrier.cc",
98 "base/allocator.cc",
99 "base/arena_allocator.cc",
100 "base/arena_bit_vector.cc",
101 "base/bit_vector.cc",
102 "base/file_magic.cc",
David Sehr891a50e2017-10-27 17:01:07 -0700103 "base/file_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700104 "base/hex_dump.cc",
105 "base/logging.cc",
106 "base/mutex.cc",
Andreas Gampedcc528d2017-12-07 13:37:10 -0800107 "base/runtime_debug.cc",
Josh Gao682282e2017-04-17 18:31:26 -0700108 "base/safe_copy.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700109 "base/scoped_arena_allocator.cc",
110 "base/scoped_flock.cc",
111 "base/stringpiece.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700112 "base/time_utils.cc",
113 "base/timing_logger.cc",
114 "base/unix_file/fd_file.cc",
115 "base/unix_file/random_access_file_utils.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700116 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700117 "check_jni.cc",
118 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700119 "class_loader_context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700120 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700121 "common_throws.cc",
122 "compiler_filter.cc",
123 "debugger.cc",
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800124 "dex/compact_dex_debug_info.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800125 "dex/compact_dex_file.cc",
126 "dex/dex_file.cc",
127 "dex/dex_file_annotations.cc",
128 "dex/dex_file_exception_helpers.cc",
129 "dex/dex_file_layout.cc",
130 "dex/dex_file_loader.cc",
David Sehr013fd802018-01-11 22:55:24 -0800131 "dex/art_dex_file_loader.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800132 "dex/dex_file_tracking_registrar.cc",
133 "dex/dex_file_verifier.cc",
134 "dex/dex_instruction.cc",
135 "dex/standard_dex_file.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +0100136 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700137 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -0800138 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700139 "fault_handler.cc",
140 "gc/allocation_record.cc",
141 "gc/allocator/dlmalloc.cc",
142 "gc/allocator/rosalloc.cc",
143 "gc/accounting/bitmap.cc",
144 "gc/accounting/card_table.cc",
145 "gc/accounting/heap_bitmap.cc",
146 "gc/accounting/mod_union_table.cc",
147 "gc/accounting/remembered_set.cc",
148 "gc/accounting/space_bitmap.cc",
149 "gc/collector/concurrent_copying.cc",
150 "gc/collector/garbage_collector.cc",
151 "gc/collector/immune_region.cc",
152 "gc/collector/immune_spaces.cc",
153 "gc/collector/mark_compact.cc",
154 "gc/collector/mark_sweep.cc",
155 "gc/collector/partial_mark_sweep.cc",
156 "gc/collector/semi_space.cc",
157 "gc/collector/sticky_mark_sweep.cc",
158 "gc/gc_cause.cc",
159 "gc/heap.cc",
160 "gc/reference_processor.cc",
161 "gc/reference_queue.cc",
162 "gc/scoped_gc_critical_section.cc",
163 "gc/space/bump_pointer_space.cc",
164 "gc/space/dlmalloc_space.cc",
165 "gc/space/image_space.cc",
166 "gc/space/large_object_space.cc",
167 "gc/space/malloc_space.cc",
168 "gc/space/region_space.cc",
169 "gc/space/rosalloc_space.cc",
170 "gc/space/space.cc",
171 "gc/space/zygote_space.cc",
172 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700173 "gc/verification.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700174 "hprof/hprof.cc",
175 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +0000176 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700177 "indirect_reference_table.cc",
178 "instrumentation.cc",
179 "intern_table.cc",
180 "interpreter/interpreter.cc",
181 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -0800182 "interpreter/interpreter_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700183 "interpreter/interpreter_switch_impl.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700184 "interpreter/lock_count_data.cc",
185 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700186 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700187 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700188 "java_vm_ext.cc",
189 "jdwp/jdwp_event.cc",
190 "jdwp/jdwp_expand_buf.cc",
191 "jdwp/jdwp_handler.cc",
192 "jdwp/jdwp_main.cc",
193 "jdwp/jdwp_request.cc",
194 "jdwp/jdwp_socket.cc",
195 "jdwp/object_registry.cc",
196 "jni_env_ext.cc",
197 "jit/debugger_interface.cc",
198 "jit/jit.cc",
199 "jit/jit_code_cache.cc",
Calin Juravle33083d62017-01-18 15:29:12 -0800200 "jit/profile_compilation_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700201 "jit/profiling_info.cc",
202 "jit/profile_saver.cc",
203 "jni_internal.cc",
204 "jobject_comparator.cc",
205 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700206 "managed_stack.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700207 "mem_map.cc",
208 "memory_region.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100209 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700210 "mirror/array.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000211 "mirror/call_site.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700212 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700213 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700214 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100215 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100216 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700217 "mirror/field.cc",
218 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100219 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000220 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100221 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700222 "mirror/object.cc",
223 "mirror/reference.cc",
224 "mirror/stack_trace_element.cc",
225 "mirror/string.cc",
226 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100227 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700228 "monitor.cc",
229 "native_bridge_art_interface.cc",
230 "native_stack_dump.cc",
231 "native/dalvik_system_DexFile.cc",
232 "native/dalvik_system_VMDebug.cc",
233 "native/dalvik_system_VMRuntime.cc",
234 "native/dalvik_system_VMStack.cc",
235 "native/dalvik_system_ZygoteHooks.cc",
236 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700237 "native/java_lang_Object.cc",
238 "native/java_lang_String.cc",
239 "native/java_lang_StringFactory.cc",
240 "native/java_lang_System.cc",
241 "native/java_lang_Thread.cc",
242 "native/java_lang_Throwable.cc",
243 "native/java_lang_VMClassLoader.cc",
Vladimir Markoe00e5592017-02-24 14:58:29 +0000244 "native/java_lang_Void.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000245 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700246 "native/java_lang_ref_FinalizerReference.cc",
247 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700248 "native/java_lang_reflect_Array.cc",
249 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100250 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700251 "native/java_lang_reflect_Field.cc",
252 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100253 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700254 "native/java_lang_reflect_Proxy.cc",
255 "native/java_util_concurrent_atomic_AtomicLong.cc",
256 "native/libcore_util_CharsetUtils.cc",
257 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
258 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
259 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800260 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700261 "oat.cc",
262 "oat_file.cc",
263 "oat_file_assistant.cc",
264 "oat_file_manager.cc",
265 "oat_quick_method_header.cc",
266 "object_lock.cc",
267 "offsets.cc",
268 "os_linux.cc",
269 "parsed_options.cc",
270 "plugin.cc",
271 "primitive.cc",
272 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700273 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700274 "reference_table.cc",
275 "reflection.cc",
276 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000277 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000278 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000279 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700280 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700281 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700282 "signal_catcher.cc",
283 "stack.cc",
284 "stack_map.cc",
285 "thread.cc",
286 "thread_list.cc",
287 "thread_pool.cc",
288 "ti/agent.cc",
289 "trace.cc",
290 "transaction.cc",
291 "type_lookup_table.cc",
292 "utf.cc",
293 "utils.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100294 "vdex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700295 "verifier/instruction_flags.cc",
296 "verifier/method_verifier.cc",
297 "verifier/reg_type.cc",
298 "verifier/reg_type_cache.cc",
299 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100300 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800301 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700302 "well_known_classes.cc",
303 "zip_archive.cc",
304
305 "arch/context.cc",
306 "arch/instruction_set.cc",
307 "arch/instruction_set_features.cc",
308 "arch/memcmp16.cc",
309 "arch/arm/instruction_set_features_arm.cc",
310 "arch/arm/registers_arm.cc",
311 "arch/arm64/instruction_set_features_arm64.cc",
312 "arch/arm64/registers_arm64.cc",
313 "arch/mips/instruction_set_features_mips.cc",
314 "arch/mips/registers_mips.cc",
315 "arch/mips64/instruction_set_features_mips64.cc",
316 "arch/mips64/registers_mips64.cc",
317 "arch/x86/instruction_set_features_x86.cc",
318 "arch/x86/registers_x86.cc",
319 "arch/x86_64/registers_x86_64.cc",
320 "entrypoints/entrypoint_utils.cc",
321 "entrypoints/jni/jni_entrypoints.cc",
322 "entrypoints/math_entrypoints.cc",
323 "entrypoints/quick/quick_alloc_entrypoints.cc",
324 "entrypoints/quick/quick_cast_entrypoints.cc",
325 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
326 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000327 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700328 "entrypoints/quick/quick_field_entrypoints.cc",
329 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700330 "entrypoints/quick/quick_jni_entrypoints.cc",
331 "entrypoints/quick/quick_lock_entrypoints.cc",
332 "entrypoints/quick/quick_math_entrypoints.cc",
333 "entrypoints/quick/quick_thread_entrypoints.cc",
334 "entrypoints/quick/quick_throw_entrypoints.cc",
335 "entrypoints/quick/quick_trampoline_entrypoints.cc",
336 ],
337
338 arch: {
339 arm: {
340 clang_asflags: ["-no-integrated-as"],
341 srcs: [
342 "interpreter/mterp/mterp.cc",
343 "interpreter/mterp/out/mterp_arm.S",
344 "arch/arm/context_arm.cc",
345 "arch/arm/entrypoints_init_arm.cc",
346 "arch/arm/instruction_set_features_assembly_tests.S",
347 "arch/arm/jni_entrypoints_arm.S",
348 "arch/arm/memcmp16_arm.S",
349 "arch/arm/quick_entrypoints_arm.S",
350 "arch/arm/quick_entrypoints_cc_arm.cc",
351 "arch/arm/thread_arm.cc",
352 "arch/arm/fault_handler_arm.cc",
353 ],
354 },
355 arm64: {
356 srcs: [
357 "interpreter/mterp/mterp.cc",
358 "interpreter/mterp/out/mterp_arm64.S",
359 "arch/arm64/context_arm64.cc",
360 "arch/arm64/entrypoints_init_arm64.cc",
361 "arch/arm64/jni_entrypoints_arm64.S",
362 "arch/arm64/memcmp16_arm64.S",
363 "arch/arm64/quick_entrypoints_arm64.S",
364 "arch/arm64/thread_arm64.cc",
365 "monitor_pool.cc",
366 "arch/arm64/fault_handler_arm64.cc",
367 ],
368 },
369 x86: {
370 srcs: [
371 "interpreter/mterp/mterp.cc",
372 "interpreter/mterp/out/mterp_x86.S",
373 "arch/x86/context_x86.cc",
374 "arch/x86/entrypoints_init_x86.cc",
375 "arch/x86/jni_entrypoints_x86.S",
376 "arch/x86/memcmp16_x86.S",
377 "arch/x86/quick_entrypoints_x86.S",
378 "arch/x86/thread_x86.cc",
379 "arch/x86/fault_handler_x86.cc",
380 ],
381 },
382 x86_64: {
383 srcs: [
384 // Note that the fault_handler_x86.cc is not a mistake. This file is
385 // shared between the x86 and x86_64 architectures.
386 "interpreter/mterp/mterp.cc",
387 "interpreter/mterp/out/mterp_x86_64.S",
388 "arch/x86_64/context_x86_64.cc",
389 "arch/x86_64/entrypoints_init_x86_64.cc",
390 "arch/x86_64/jni_entrypoints_x86_64.S",
391 "arch/x86_64/memcmp16_x86_64.S",
392 "arch/x86_64/quick_entrypoints_x86_64.S",
393 "arch/x86_64/thread_x86_64.cc",
394 "monitor_pool.cc",
395 "arch/x86/fault_handler_x86.cc",
396 ],
397 },
398 mips: {
399 srcs: [
400 "interpreter/mterp/mterp.cc",
401 "interpreter/mterp/out/mterp_mips.S",
402 "arch/mips/context_mips.cc",
403 "arch/mips/entrypoints_init_mips.cc",
404 "arch/mips/jni_entrypoints_mips.S",
405 "arch/mips/memcmp16_mips.S",
406 "arch/mips/quick_entrypoints_mips.S",
407 "arch/mips/thread_mips.cc",
408 "arch/mips/fault_handler_mips.cc",
409 ],
410 },
411 mips64: {
412 srcs: [
413 "interpreter/mterp/mterp.cc",
414 "interpreter/mterp/out/mterp_mips64.S",
415 "arch/mips64/context_mips64.cc",
416 "arch/mips64/entrypoints_init_mips64.cc",
417 "arch/mips64/jni_entrypoints_mips64.S",
418 "arch/mips64/memcmp16_mips64.S",
419 "arch/mips64/quick_entrypoints_mips64.S",
420 "arch/mips64/thread_mips64.cc",
421 "monitor_pool.cc",
422 "arch/mips64/fault_handler_mips64.cc",
423 ],
424 },
425 },
426 target: {
427 android: {
428 srcs: [
429 "jdwp/jdwp_adb.cc",
430 "monitor_android.cc",
431 "runtime_android.cc",
432 "thread_android.cc",
433 ],
434 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700435 // For android::FileMap used by libziparchive.
436 "libutils",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700437 "libtombstoned_client",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700438 ],
439 static_libs: [
440 // ZipArchive support, the order matters here to get all symbols.
441 "libziparchive",
442 "libz",
443 "libbase",
444 ],
445 },
446 android_arm: {
447 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
448 },
449 android_arm64: {
450 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
451 },
452 android_x86: {
453 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
454 },
455 android_x86_64: {
456 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
457 },
458 host: {
459 srcs: [
460 "monitor_linux.cc",
461 "runtime_linux.cc",
462 "thread_linux.cc",
463 ],
464 shared_libs: [
465 "libziparchive",
Dan Willemsen0e503b52017-09-27 16:05:49 -0700466 "libz",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700467 ],
468 },
469 },
470 cflags: ["-DBUILDING_LIBART=1"],
471 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800472 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
473 generated_headers: ["cpp-define-generator-asm-support"],
474 // export our headers so the libart-gtest targets can use it as well.
475 export_generated_headers: ["cpp-define-generator-asm-support"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700476 include_dirs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700477 "art/sigchainlib",
Andreas Gampefdb7a612017-11-01 15:11:13 -0700478 "external/icu/icu4c/source/common",
Andreas Gampef24dfb02017-11-01 15:41:25 -0700479 "external/lz4/lib",
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700480 "external/zlib",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700481 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700482 header_libs: [
483 "art_cmdlineparser_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700484 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700485 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700486 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700487 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700488 "libnativebridge",
489 "libnativeloader",
490 "libbacktrace",
491 "liblz4",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700492 "liblog",
493 // For atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700494 "libcutils",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700495 // For common macros.
496 "libbase",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700497 ],
498 static: {
499 static_libs: ["libsigchain_dummy"],
500 },
501 shared: {
502 shared_libs: ["libsigchain"],
503 },
504 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700505 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700506 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
507 // generically. dex2oat takes care of it itself.
Andreas Gampeaaadff82016-08-29 09:53:48 -0700508 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700509}
510
511gensrcs {
512 name: "art_operator_srcs",
Colin Crossf657ed02016-11-04 15:31:17 -0700513 cmd: "$(location generate-operator-out.py) art/runtime $(in) > $(out)",
514 tool_files: ["generate-operator-out.py"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700515 srcs: [
516 "arch/instruction_set.h",
517 "base/allocator.h",
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700518 "base/callee_save_type.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700519 "base/enums.h",
520 "base/mutex.h",
521 "debugger.h",
522 "base/unix_file/fd_file.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700523 "class_status.h",
David Sehr9e734c72018-01-04 17:56:19 -0800524 "dex/dex_file.h",
525 "dex/dex_file_layout.h",
526 "dex/dex_instruction.h",
527 "dex/dex_instruction_utils.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700528 "gc_root.h",
529 "gc/allocator_type.h",
530 "gc/allocator/rosalloc.h",
531 "gc/collector_type.h",
532 "gc/collector/gc_type.h",
533 "gc/heap.h",
534 "gc/space/region_space.h",
535 "gc/space/space.h",
536 "gc/weak_root_state.h",
537 "image.h",
538 "instrumentation.h",
539 "indirect_reference_table.h",
540 "invoke_type.h",
Alex Light40320712017-12-14 11:52:04 -0800541 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700542 "jdwp/jdwp.h",
543 "jdwp/jdwp_constants.h",
544 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700545 "oat.h",
546 "object_callbacks.h",
547 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700548 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700549 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700550 "thread.h",
551 "thread_state.h",
552 "ti/agent.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700553 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700554 ],
555 output_extension: "operator_out.cc",
556}
557
558// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
559// they are used to cross compile for the target.
560
561art_cc_library {
562 name: "libart",
563 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700564 // Leave the symbols in the shared library so that stack unwinders can
565 // produce meaningful name resolution.
566 strip: {
567 keep_symbols: true,
568 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700569}
570
571art_cc_library {
572 name: "libartd",
573 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700574 "art_debug_defaults",
575 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700576 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700577}
578
Colin Cross6b22aa52016-09-12 14:35:39 -0700579art_cc_library {
580 name: "libart-runtime-gtest",
581 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800582 srcs: [
583 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700584 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800585 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700586 shared_libs: [
587 "libartd",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700588 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700589 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700590 ],
591 header_libs: [
592 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700593 ],
Andreas Gampefdb7a612017-11-01 15:11:13 -0700594 include_dirs: [
595 "external/icu/icu4c/source/common",
596 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700597}
598
Colin Cross6e95dd52016-09-12 15:37:10 -0700599art_cc_test {
600 name: "art_runtime_tests",
601 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700602 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700603 ],
604 srcs: [
605 "arch/arch_test.cc",
606 "arch/instruction_set_test.cc",
607 "arch/instruction_set_features_test.cc",
608 "arch/memcmp16_test.cc",
609 "arch/stub_test.cc",
610 "arch/arm/instruction_set_features_arm_test.cc",
611 "arch/arm64/instruction_set_features_arm64_test.cc",
612 "arch/mips/instruction_set_features_mips_test.cc",
613 "arch/mips64/instruction_set_features_mips64_test.cc",
614 "arch/x86/instruction_set_features_x86_test.cc",
615 "arch/x86_64/instruction_set_features_x86_64_test.cc",
616 "barrier_test.cc",
617 "base/arena_allocator_test.cc",
618 "base/bit_field_test.cc",
Igor Murashkin44559f22017-10-27 10:43:08 -0700619 "base/bit_string_test.cc",
Igor Murashkin1e77d272017-10-07 14:09:43 +0000620 "base/bit_struct_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700621 "base/bit_utils_test.cc",
622 "base/bit_vector_test.cc",
623 "base/hash_set_test.cc",
624 "base/hex_dump_test.cc",
625 "base/histogram_test.cc",
Andreas Gampe1c5b42f2017-06-15 18:20:45 -0700626 "base/logging_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700627 "base/mutex_test.cc",
Josh Gao682282e2017-04-17 18:31:26 -0700628 "base/safe_copy_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700629 "base/scoped_flock_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700630 "base/time_utils_test.cc",
631 "base/timing_logger_test.cc",
632 "base/transform_array_ref_test.cc",
633 "base/transform_iterator_test.cc",
634 "base/variant_map_test.cc",
635 "base/unix_file/fd_file_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700636 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700637 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700638 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800639 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700640 "compiler_filter_test.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800641 "dex/code_item_accessors_test.cc",
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800642 "dex/compact_dex_debug_info_test.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800643 "dex/compact_dex_file_test.cc",
644 "dex/dex_file_test.cc",
645 "dex/dex_file_verifier_test.cc",
646 "dex/dex_instruction_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700647 "entrypoints/math_entrypoints_test.cc",
648 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
649 "entrypoints_order_test.cc",
650 "gc/accounting/card_table_test.cc",
651 "gc/accounting/mod_union_table_test.cc",
652 "gc/accounting/space_bitmap_test.cc",
653 "gc/collector/immune_spaces_test.cc",
654 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700655 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700656 "gc/reference_queue_test.cc",
657 "gc/space/dlmalloc_space_static_test.cc",
658 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000659 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700660 "gc/space/large_object_space_test.cc",
661 "gc/space/rosalloc_space_static_test.cc",
662 "gc/space/rosalloc_space_random_test.cc",
663 "gc/space/space_create_test.cc",
664 "gc/system_weak_test.cc",
665 "gc/task_processor_test.cc",
666 "gtest_test.cc",
667 "handle_scope_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700668 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700669 "indenter_test.cc",
670 "indirect_reference_table_test.cc",
671 "instrumentation_test.cc",
672 "intern_table_test.cc",
673 "interpreter/safe_math_test.cc",
674 "interpreter/unstarted_runtime_test.cc",
Alex Light40320712017-12-14 11:52:04 -0800675 "jdwp/jdwp_options_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700676 "java_vm_ext_test.cc",
677 "jit/profile_compilation_info_test.cc",
678 "leb128_test.cc",
679 "mem_map_test.cc",
680 "memory_region_test.cc",
681 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100682 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700683 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100684 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700685 "monitor_pool_test.cc",
686 "monitor_test.cc",
687 "oat_file_test.cc",
688 "oat_file_assistant_test.cc",
689 "parsed_options_test.cc",
690 "prebuilt_tools_test.cc",
691 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000692 "runtime_callbacks_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700693 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700694 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700695 "thread_pool_test.cc",
696 "transaction_test.cc",
697 "type_lookup_table_test.cc",
698 "utf_test.cc",
699 "utils_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000700 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700701 "verifier/method_verifier_test.cc",
702 "verifier/reg_type_test.cc",
703 "zip_archive_test.cc",
704 ],
705 shared_libs: [
706 "libbacktrace",
707 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700708 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700709 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700710 ],
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700711 include_dirs: [
712 "external/zlib",
713 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700714}
715
716art_cc_test {
717 name: "art_runtime_compiler_tests",
718 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700719 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700720 ],
721 srcs: [
722 "jni_internal_test.cc",
723 "proxy_test.cc",
724 "reflection_test.cc",
725 ],
726 shared_libs: [
727 "libartd-compiler",
728 "libvixld-arm",
729 "libvixld-arm64",
730 ],
731}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700732
733cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700734 name: "libart_runtime_headers",
735 host_supported: true,
736 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700737}