blob: db9bceaf298225803393f22e82d1f320ca62ff10 [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
Colin Cross1f7f3bd2016-07-27 10:12:38 -070017cc_defaults {
David Sehr013fd802018-01-11 22:55:24 -080018 name: "libdexfile_defaults",
19 defaults: ["art_defaults"],
20 host_supported: true,
21 srcs: [
Mathieu Chartier8892c6b2018-01-09 15:10:17 -080022 "dex/compact_dex_debug_info.cc",
David Sehr013fd802018-01-11 22:55:24 -080023 "dex/compact_dex_file.cc",
David Sehr0225f8e2018-01-31 08:52:24 +000024 "dex/descriptors_names.cc",
David Sehr013fd802018-01-11 22:55:24 -080025 "dex/dex_file.cc",
26 "dex/dex_file_exception_helpers.cc",
27 "dex/dex_file_loader.cc",
28 "dex/dex_file_tracking_registrar.cc",
29 "dex/dex_file_verifier.cc",
30 "dex/dex_instruction.cc",
David Sehr8c0961f2018-01-23 16:11:38 -080031 "dex/modifiers.cc",
David Sehr013fd802018-01-11 22:55:24 -080032 "dex/standard_dex_file.cc",
David Sehr0225f8e2018-01-31 08:52:24 +000033 "dex/utf.cc",
David Sehr013fd802018-01-11 22:55:24 -080034 ],
35
36 target: {
37 android: {
David Sehr013fd802018-01-11 22:55:24 -080038 static_libs: [
David Sehr5a1f6292018-01-19 11:08:51 -080039 "libziparchive",
David Sehr013fd802018-01-11 22:55:24 -080040 "libz",
41 "libbase",
42 ],
David Sehr5a1f6292018-01-19 11:08:51 -080043 shared_libs: [
44 "libutils",
45 ],
David Sehr013fd802018-01-11 22:55:24 -080046 },
47 host: {
48 shared_libs: [
David Sehr5a1f6292018-01-19 11:08:51 -080049 "libziparchive",
David Sehr013fd802018-01-11 22:55:24 -080050 "libz",
51 ],
52 },
53 },
David Sehr0225f8e2018-01-31 08:52:24 +000054 generated_sources: ["dexfile_operator_srcs"],
David Sehr013fd802018-01-11 22:55:24 -080055 include_dirs: [
David Sehr013fd802018-01-11 22:55:24 -080056 "external/zlib",
57 ],
58 shared_libs: [
59 "liblog",
60 // For common macros.
61 "libbase",
David Srbecky28ccbfc2018-01-19 02:46:02 +000062 "libz",
David Sehr013fd802018-01-11 22:55:24 -080063 ],
David Srbecky28ccbfc2018-01-19 02:46:02 +000064
65 // Exporting "." would shadow the system elf.h with our elf.h,
66 // which in turn breaks any tools that reference this library.
67 // export_include_dirs: ["."],
David Sehr8c0961f2018-01-23 16:11:38 -080068}
David Srbecky28ccbfc2018-01-19 02:46:02 +000069
David Sehr8c0961f2018-01-23 16:11:38 -080070gensrcs {
71 name: "dexfile_operator_srcs",
72 cmd: "$(location generate-operator-out.py) art/runtime $(in) > $(out)",
73 tool_files: ["generate-operator-out.py"],
74 srcs: [
75 "dex/dex_file.h",
76 "dex/dex_file_layout.h",
77 "dex/dex_instruction.h",
78 "dex/dex_instruction_utils.h",
79 "dex/invoke_type.h",
80 ],
81 output_extension: "operator_out.cc",
David Sehr013fd802018-01-11 22:55:24 -080082}
83
84art_cc_library {
85 name: "libdexfile",
86 defaults: ["libdexfile_defaults"],
87 // Leave the symbols in the shared library so that stack unwinders can
88 // produce meaningful name resolution.
89 strip: {
90 keep_symbols: true,
91 },
92}
93
David Sehr8c0961f2018-01-23 16:11:38 -080094// Keep the __jit_debug_register_code symbol as a unique symbol during ICF for architectures where
95// we use gold as the linker (arm, x86, x86_64). The symbol is used by the debuggers to detect when
96// new jit code is generated. We don't want it to be called when a different function with the same
97// (empty) body is called.
98JIT_DEBUG_REGISTER_CODE_LDFLAGS = ["-Wl,--keep-unique,__jit_debug_register_code"]
99
David Sehr013fd802018-01-11 22:55:24 -0800100cc_defaults {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700101 name: "libart_defaults",
102 defaults: ["art_defaults"],
103 host_supported: true,
104 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -0700105 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700106 "art_field.cc",
107 "art_method.cc",
108 "atomic.cc",
109 "barrier.cc",
110 "base/allocator.cc",
111 "base/arena_allocator.cc",
112 "base/arena_bit_vector.cc",
113 "base/bit_vector.cc",
114 "base/file_magic.cc",
David Sehr891a50e2017-10-27 17:01:07 -0700115 "base/file_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700116 "base/hex_dump.cc",
117 "base/logging.cc",
118 "base/mutex.cc",
Andreas Gampedcc528d2017-12-07 13:37:10 -0800119 "base/runtime_debug.cc",
Josh Gao682282e2017-04-17 18:31:26 -0700120 "base/safe_copy.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700121 "base/scoped_arena_allocator.cc",
122 "base/scoped_flock.cc",
123 "base/stringpiece.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700124 "base/time_utils.cc",
125 "base/timing_logger.cc",
126 "base/unix_file/fd_file.cc",
127 "base/unix_file/random_access_file_utils.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700128 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700129 "check_jni.cc",
130 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700131 "class_loader_context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700132 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700133 "common_throws.cc",
134 "compiler_filter.cc",
135 "debugger.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800136 "dex/dex_file_annotations.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800137 "dex/dex_file_layout.cc",
David Sehr013fd802018-01-11 22:55:24 -0800138 "dex/art_dex_file_loader.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +0100139 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700140 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -0800141 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700142 "fault_handler.cc",
143 "gc/allocation_record.cc",
144 "gc/allocator/dlmalloc.cc",
145 "gc/allocator/rosalloc.cc",
146 "gc/accounting/bitmap.cc",
147 "gc/accounting/card_table.cc",
148 "gc/accounting/heap_bitmap.cc",
149 "gc/accounting/mod_union_table.cc",
150 "gc/accounting/remembered_set.cc",
151 "gc/accounting/space_bitmap.cc",
152 "gc/collector/concurrent_copying.cc",
153 "gc/collector/garbage_collector.cc",
154 "gc/collector/immune_region.cc",
155 "gc/collector/immune_spaces.cc",
156 "gc/collector/mark_compact.cc",
157 "gc/collector/mark_sweep.cc",
158 "gc/collector/partial_mark_sweep.cc",
159 "gc/collector/semi_space.cc",
160 "gc/collector/sticky_mark_sweep.cc",
161 "gc/gc_cause.cc",
162 "gc/heap.cc",
163 "gc/reference_processor.cc",
164 "gc/reference_queue.cc",
165 "gc/scoped_gc_critical_section.cc",
166 "gc/space/bump_pointer_space.cc",
167 "gc/space/dlmalloc_space.cc",
168 "gc/space/image_space.cc",
169 "gc/space/large_object_space.cc",
170 "gc/space/malloc_space.cc",
171 "gc/space/region_space.cc",
172 "gc/space/rosalloc_space.cc",
173 "gc/space/space.cc",
174 "gc/space/zygote_space.cc",
175 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700176 "gc/verification.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700177 "hprof/hprof.cc",
178 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +0000179 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700180 "indirect_reference_table.cc",
181 "instrumentation.cc",
182 "intern_table.cc",
183 "interpreter/interpreter.cc",
184 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -0800185 "interpreter/interpreter_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700186 "interpreter/interpreter_switch_impl.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700187 "interpreter/lock_count_data.cc",
188 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700189 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700190 "java_frame_root_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700191 "java_vm_ext.cc",
192 "jdwp/jdwp_event.cc",
193 "jdwp/jdwp_expand_buf.cc",
194 "jdwp/jdwp_handler.cc",
195 "jdwp/jdwp_main.cc",
196 "jdwp/jdwp_request.cc",
197 "jdwp/jdwp_socket.cc",
198 "jdwp/object_registry.cc",
199 "jni_env_ext.cc",
200 "jit/debugger_interface.cc",
201 "jit/jit.cc",
202 "jit/jit_code_cache.cc",
Calin Juravle33083d62017-01-18 15:29:12 -0800203 "jit/profile_compilation_info.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700204 "jit/profiling_info.cc",
205 "jit/profile_saver.cc",
206 "jni_internal.cc",
207 "jobject_comparator.cc",
208 "linear_alloc.cc",
Andreas Gampe513061a2017-06-01 09:17:34 -0700209 "managed_stack.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700210 "mem_map.cc",
211 "memory_region.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100212 "method_handles.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700213 "mirror/array.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000214 "mirror/call_site.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700215 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700216 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700217 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100218 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100219 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700220 "mirror/field.cc",
221 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100222 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000223 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100224 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700225 "mirror/object.cc",
226 "mirror/reference.cc",
227 "mirror/stack_trace_element.cc",
228 "mirror/string.cc",
229 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100230 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700231 "monitor.cc",
232 "native_bridge_art_interface.cc",
233 "native_stack_dump.cc",
234 "native/dalvik_system_DexFile.cc",
235 "native/dalvik_system_VMDebug.cc",
236 "native/dalvik_system_VMRuntime.cc",
237 "native/dalvik_system_VMStack.cc",
238 "native/dalvik_system_ZygoteHooks.cc",
239 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700240 "native/java_lang_Object.cc",
241 "native/java_lang_String.cc",
242 "native/java_lang_StringFactory.cc",
243 "native/java_lang_System.cc",
244 "native/java_lang_Thread.cc",
245 "native/java_lang_Throwable.cc",
246 "native/java_lang_VMClassLoader.cc",
Vladimir Markoe00e5592017-02-24 14:58:29 +0000247 "native/java_lang_Void.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000248 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700249 "native/java_lang_ref_FinalizerReference.cc",
250 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700251 "native/java_lang_reflect_Array.cc",
252 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100253 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700254 "native/java_lang_reflect_Field.cc",
255 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100256 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700257 "native/java_lang_reflect_Proxy.cc",
258 "native/java_util_concurrent_atomic_AtomicLong.cc",
259 "native/libcore_util_CharsetUtils.cc",
260 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
261 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
262 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800263 "non_debuggable_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700264 "oat.cc",
265 "oat_file.cc",
266 "oat_file_assistant.cc",
267 "oat_file_manager.cc",
268 "oat_quick_method_header.cc",
269 "object_lock.cc",
270 "offsets.cc",
271 "os_linux.cc",
272 "parsed_options.cc",
273 "plugin.cc",
274 "primitive.cc",
275 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700276 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700277 "reference_table.cc",
278 "reflection.cc",
279 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000280 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000281 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000282 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700283 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700284 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700285 "signal_catcher.cc",
286 "stack.cc",
287 "stack_map.cc",
288 "thread.cc",
289 "thread_list.cc",
290 "thread_pool.cc",
291 "ti/agent.cc",
292 "trace.cc",
293 "transaction.cc",
294 "type_lookup_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700295 "utils.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100296 "vdex_file.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700297 "verifier/instruction_flags.cc",
298 "verifier/method_verifier.cc",
299 "verifier/reg_type.cc",
300 "verifier/reg_type_cache.cc",
301 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100302 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800303 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700304 "well_known_classes.cc",
305 "zip_archive.cc",
306
307 "arch/context.cc",
308 "arch/instruction_set.cc",
309 "arch/instruction_set_features.cc",
310 "arch/memcmp16.cc",
311 "arch/arm/instruction_set_features_arm.cc",
312 "arch/arm/registers_arm.cc",
313 "arch/arm64/instruction_set_features_arm64.cc",
314 "arch/arm64/registers_arm64.cc",
315 "arch/mips/instruction_set_features_mips.cc",
316 "arch/mips/registers_mips.cc",
317 "arch/mips64/instruction_set_features_mips64.cc",
318 "arch/mips64/registers_mips64.cc",
319 "arch/x86/instruction_set_features_x86.cc",
320 "arch/x86/registers_x86.cc",
321 "arch/x86_64/registers_x86_64.cc",
322 "entrypoints/entrypoint_utils.cc",
323 "entrypoints/jni/jni_entrypoints.cc",
324 "entrypoints/math_entrypoints.cc",
325 "entrypoints/quick/quick_alloc_entrypoints.cc",
326 "entrypoints/quick/quick_cast_entrypoints.cc",
327 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
328 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000329 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700330 "entrypoints/quick/quick_field_entrypoints.cc",
331 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700332 "entrypoints/quick/quick_jni_entrypoints.cc",
333 "entrypoints/quick/quick_lock_entrypoints.cc",
334 "entrypoints/quick/quick_math_entrypoints.cc",
335 "entrypoints/quick/quick_thread_entrypoints.cc",
336 "entrypoints/quick/quick_throw_entrypoints.cc",
337 "entrypoints/quick/quick_trampoline_entrypoints.cc",
338 ],
339
340 arch: {
341 arm: {
342 clang_asflags: ["-no-integrated-as"],
343 srcs: [
344 "interpreter/mterp/mterp.cc",
345 "interpreter/mterp/out/mterp_arm.S",
346 "arch/arm/context_arm.cc",
347 "arch/arm/entrypoints_init_arm.cc",
348 "arch/arm/instruction_set_features_assembly_tests.S",
349 "arch/arm/jni_entrypoints_arm.S",
350 "arch/arm/memcmp16_arm.S",
351 "arch/arm/quick_entrypoints_arm.S",
352 "arch/arm/quick_entrypoints_cc_arm.cc",
353 "arch/arm/thread_arm.cc",
354 "arch/arm/fault_handler_arm.cc",
355 ],
356 },
357 arm64: {
358 srcs: [
359 "interpreter/mterp/mterp.cc",
360 "interpreter/mterp/out/mterp_arm64.S",
361 "arch/arm64/context_arm64.cc",
362 "arch/arm64/entrypoints_init_arm64.cc",
363 "arch/arm64/jni_entrypoints_arm64.S",
364 "arch/arm64/memcmp16_arm64.S",
365 "arch/arm64/quick_entrypoints_arm64.S",
366 "arch/arm64/thread_arm64.cc",
367 "monitor_pool.cc",
368 "arch/arm64/fault_handler_arm64.cc",
369 ],
370 },
371 x86: {
372 srcs: [
373 "interpreter/mterp/mterp.cc",
374 "interpreter/mterp/out/mterp_x86.S",
375 "arch/x86/context_x86.cc",
376 "arch/x86/entrypoints_init_x86.cc",
377 "arch/x86/jni_entrypoints_x86.S",
378 "arch/x86/memcmp16_x86.S",
379 "arch/x86/quick_entrypoints_x86.S",
380 "arch/x86/thread_x86.cc",
381 "arch/x86/fault_handler_x86.cc",
382 ],
383 },
384 x86_64: {
385 srcs: [
386 // Note that the fault_handler_x86.cc is not a mistake. This file is
387 // shared between the x86 and x86_64 architectures.
388 "interpreter/mterp/mterp.cc",
389 "interpreter/mterp/out/mterp_x86_64.S",
390 "arch/x86_64/context_x86_64.cc",
391 "arch/x86_64/entrypoints_init_x86_64.cc",
392 "arch/x86_64/jni_entrypoints_x86_64.S",
393 "arch/x86_64/memcmp16_x86_64.S",
394 "arch/x86_64/quick_entrypoints_x86_64.S",
395 "arch/x86_64/thread_x86_64.cc",
396 "monitor_pool.cc",
397 "arch/x86/fault_handler_x86.cc",
398 ],
399 },
400 mips: {
401 srcs: [
402 "interpreter/mterp/mterp.cc",
403 "interpreter/mterp/out/mterp_mips.S",
404 "arch/mips/context_mips.cc",
405 "arch/mips/entrypoints_init_mips.cc",
406 "arch/mips/jni_entrypoints_mips.S",
407 "arch/mips/memcmp16_mips.S",
408 "arch/mips/quick_entrypoints_mips.S",
409 "arch/mips/thread_mips.cc",
410 "arch/mips/fault_handler_mips.cc",
411 ],
412 },
413 mips64: {
414 srcs: [
415 "interpreter/mterp/mterp.cc",
416 "interpreter/mterp/out/mterp_mips64.S",
417 "arch/mips64/context_mips64.cc",
418 "arch/mips64/entrypoints_init_mips64.cc",
419 "arch/mips64/jni_entrypoints_mips64.S",
420 "arch/mips64/memcmp16_mips64.S",
421 "arch/mips64/quick_entrypoints_mips64.S",
422 "arch/mips64/thread_mips64.cc",
423 "monitor_pool.cc",
424 "arch/mips64/fault_handler_mips64.cc",
425 ],
426 },
427 },
428 target: {
429 android: {
430 srcs: [
431 "jdwp/jdwp_adb.cc",
432 "monitor_android.cc",
433 "runtime_android.cc",
434 "thread_android.cc",
435 ],
436 shared_libs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700437 // For android::FileMap used by libziparchive.
438 "libutils",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700439 "libtombstoned_client",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700440 ],
441 static_libs: [
442 // ZipArchive support, the order matters here to get all symbols.
443 "libziparchive",
444 "libz",
445 "libbase",
446 ],
447 },
448 android_arm: {
449 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
450 },
451 android_arm64: {
452 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
453 },
454 android_x86: {
455 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
456 },
457 android_x86_64: {
458 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
459 },
460 host: {
461 srcs: [
462 "monitor_linux.cc",
463 "runtime_linux.cc",
464 "thread_linux.cc",
465 ],
466 shared_libs: [
467 "libziparchive",
Dan Willemsen0e503b52017-09-27 16:05:49 -0700468 "libz",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700469 ],
470 },
471 },
472 cflags: ["-DBUILDING_LIBART=1"],
473 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800474 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
475 generated_headers: ["cpp-define-generator-asm-support"],
476 // export our headers so the libart-gtest targets can use it as well.
477 export_generated_headers: ["cpp-define-generator-asm-support"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700478 include_dirs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700479 "art/sigchainlib",
Andreas Gampefdb7a612017-11-01 15:11:13 -0700480 "external/icu/icu4c/source/common",
Andreas Gampef24dfb02017-11-01 15:41:25 -0700481 "external/lz4/lib",
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700482 "external/zlib",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700483 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700484 header_libs: [
485 "art_cmdlineparser_headers",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700486 "libnativehelper_header_only",
Andreas Gamped863be72017-09-12 12:02:28 -0700487 "jni_platform_headers",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700488 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700489 shared_libs: [
David Sehr0225f8e2018-01-31 08:52:24 +0000490 "libdexfile",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700491 "libnativebridge",
492 "libnativeloader",
493 "libbacktrace",
494 "liblz4",
Dimitry Ivanov1d3038f2016-09-23 16:52:05 -0700495 "liblog",
496 // For atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700497 "libcutils",
Andreas Gampeaaadff82016-08-29 09:53:48 -0700498 // For common macros.
499 "libbase",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700500 ],
501 static: {
502 static_libs: ["libsigchain_dummy"],
503 },
504 shared: {
505 shared_libs: ["libsigchain"],
506 },
507 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700508 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700509 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
510 // generically. dex2oat takes care of it itself.
Andreas Gampeaaadff82016-08-29 09:53:48 -0700511 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700512}
513
514gensrcs {
515 name: "art_operator_srcs",
Colin Crossf657ed02016-11-04 15:31:17 -0700516 cmd: "$(location generate-operator-out.py) art/runtime $(in) > $(out)",
517 tool_files: ["generate-operator-out.py"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700518 srcs: [
519 "arch/instruction_set.h",
520 "base/allocator.h",
Andreas Gampe8228cdf2017-05-30 15:03:54 -0700521 "base/callee_save_type.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700522 "base/enums.h",
523 "base/mutex.h",
524 "debugger.h",
525 "base/unix_file/fd_file.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700526 "class_status.h",
David Sehr9e734c72018-01-04 17:56:19 -0800527 "dex/dex_file_layout.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",
Alex Light40320712017-12-14 11:52:04 -0800540 "jdwp_provider.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700541 "jdwp/jdwp.h",
542 "jdwp/jdwp_constants.h",
543 "lock_word.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700544 "oat.h",
545 "object_callbacks.h",
546 "process_state.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700547 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700548 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700549 "thread.h",
550 "thread_state.h",
551 "ti/agent.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700552 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700553 ],
554 output_extension: "operator_out.cc",
555}
556
557// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
558// they are used to cross compile for the target.
559
560art_cc_library {
561 name: "libart",
562 defaults: ["libart_defaults"],
Andreas Gampe20ada112016-08-29 08:51:15 -0700563 // Leave the symbols in the shared library so that stack unwinders can
564 // produce meaningful name resolution.
565 strip: {
566 keep_symbols: true,
567 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700568}
569
570art_cc_library {
571 name: "libartd",
572 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700573 "art_debug_defaults",
574 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700575 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700576}
577
Colin Cross6b22aa52016-09-12 14:35:39 -0700578art_cc_library {
579 name: "libart-runtime-gtest",
580 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800581 srcs: [
582 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700583 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800584 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700585 shared_libs: [
586 "libartd",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700587 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700588 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700589 ],
590 header_libs: [
591 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700592 ],
Andreas Gampefdb7a612017-11-01 15:11:13 -0700593 include_dirs: [
594 "external/icu/icu4c/source/common",
595 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700596}
597
Colin Cross6e95dd52016-09-12 15:37:10 -0700598art_cc_test {
599 name: "art_runtime_tests",
600 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700601 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700602 ],
603 srcs: [
604 "arch/arch_test.cc",
605 "arch/instruction_set_test.cc",
606 "arch/instruction_set_features_test.cc",
607 "arch/memcmp16_test.cc",
608 "arch/stub_test.cc",
609 "arch/arm/instruction_set_features_arm_test.cc",
610 "arch/arm64/instruction_set_features_arm64_test.cc",
611 "arch/mips/instruction_set_features_mips_test.cc",
612 "arch/mips64/instruction_set_features_mips64_test.cc",
613 "arch/x86/instruction_set_features_x86_test.cc",
614 "arch/x86_64/instruction_set_features_x86_64_test.cc",
615 "barrier_test.cc",
616 "base/arena_allocator_test.cc",
617 "base/bit_field_test.cc",
Igor Murashkin44559f22017-10-27 10:43:08 -0700618 "base/bit_string_test.cc",
Igor Murashkin1e77d272017-10-07 14:09:43 +0000619 "base/bit_struct_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700620 "base/bit_utils_test.cc",
621 "base/bit_vector_test.cc",
622 "base/hash_set_test.cc",
623 "base/hex_dump_test.cc",
624 "base/histogram_test.cc",
Andreas Gampe1c5b42f2017-06-15 18:20:45 -0700625 "base/logging_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700626 "base/mutex_test.cc",
Josh Gao682282e2017-04-17 18:31:26 -0700627 "base/safe_copy_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700628 "base/scoped_flock_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700629 "base/time_utils_test.cc",
630 "base/timing_logger_test.cc",
631 "base/transform_array_ref_test.cc",
632 "base/transform_iterator_test.cc",
633 "base/variant_map_test.cc",
634 "base/unix_file/fd_file_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700635 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700636 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700637 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800638 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700639 "compiler_filter_test.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800640 "dex/code_item_accessors_test.cc",
Mathieu Chartier8892c6b2018-01-09 15:10:17 -0800641 "dex/compact_dex_debug_info_test.cc",
David Sehr9e734c72018-01-04 17:56:19 -0800642 "dex/compact_dex_file_test.cc",
643 "dex/dex_file_test.cc",
644 "dex/dex_file_verifier_test.cc",
645 "dex/dex_instruction_test.cc",
David Sehr0225f8e2018-01-31 08:52:24 +0000646 "dex/utf_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",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000681 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700682 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100683 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700684 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100685 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700686 "monitor_pool_test.cc",
687 "monitor_test.cc",
688 "oat_file_test.cc",
689 "oat_file_assistant_test.cc",
690 "parsed_options_test.cc",
691 "prebuilt_tools_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000692 "primitive_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700693 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000694 "runtime_callbacks_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700695 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700696 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700697 "thread_pool_test.cc",
698 "transaction_test.cc",
699 "type_lookup_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700700 "utils_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000701 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700702 "verifier/method_verifier_test.cc",
703 "verifier/reg_type_test.cc",
704 "zip_archive_test.cc",
705 ],
706 shared_libs: [
707 "libbacktrace",
Calin Juravle1e2de642018-01-18 01:08:23 -0800708 "libziparchive",
Colin Cross6e95dd52016-09-12 15:37:10 -0700709 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700710 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700711 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700712 ],
Andreas Gampe238e8fc2017-11-01 17:10:10 -0700713 include_dirs: [
714 "external/zlib",
715 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700716}
717
718art_cc_test {
719 name: "art_runtime_compiler_tests",
720 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700721 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700722 ],
723 srcs: [
724 "jni_internal_test.cc",
725 "proxy_test.cc",
726 "reflection_test.cc",
727 ],
728 shared_libs: [
729 "libartd-compiler",
730 "libvixld-arm",
731 "libvixld-arm64",
732 ],
733}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700734
735cc_library_headers {
Dan Willemsen2ca27802017-09-27 14:57:43 -0700736 name: "libart_runtime_headers",
737 host_supported: true,
738 export_include_dirs: ["."],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700739}