blob: 9019d1e4761539f2b9c85565479a381dbcc794a5 [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.
Bob Badour9150de62021-02-26 03:22:24 -080021package {
22 // See: http://go/android-license-faq
23 // A large-scale-change added 'default_applicable_licenses' to import
24 // all of the 'license_kinds' from "art_license"
25 // to get the below license kinds:
26 // SPDX-license-identifier-Apache-2.0
27 default_applicable_licenses: ["art_license"],
28}
29
David Srbecky440a9b32018-02-15 17:47:29 +000030JIT_DEBUG_REGISTER_CODE_LDFLAGS = [
31 "-Wl,--keep-unique,__jit_debug_register_code",
Andreas Gampe0dc93b12019-05-15 10:30:22 -070032 "-Wl,--keep-unique,__dex_debug_register_code",
David Srbecky440a9b32018-02-15 17:47:29 +000033]
David Sehr8c0961f2018-01-23 16:11:38 -080034
Christopher Ferris0d38e852019-12-11 09:37:19 -080035// These are defaults for native shared libaries that are expected to be
36// in stack traces often.
37libart_cc_defaults {
38 name: "libart_nativeunwind_defaults",
David Srbecky3a284f82020-12-07 18:49:34 +000039 target: {
40 android_arm: {
Christopher Ferris0d38e852019-12-11 09:37:19 -080041 // Arm 32 bit does not produce complete exidx unwind information
42 // so keep the .debug_frame which is relatively small and does
43 // include needed unwind information.
44 // See b/132992102 and b/145790995 for details.
45 strip: {
46 keep_symbols_and_debug_frame: true,
47 },
48 },
49 // For all other architectures, leave the symbols in the shared library
50 // so that stack unwinders can produce meaningful name resolution.
David Srbecky3a284f82020-12-07 18:49:34 +000051 android_arm64: {
Christopher Ferris0d38e852019-12-11 09:37:19 -080052 strip: {
53 keep_symbols: true,
54 },
55 },
David Srbecky3a284f82020-12-07 18:49:34 +000056 android_x86: {
Christopher Ferris0d38e852019-12-11 09:37:19 -080057 strip: {
58 keep_symbols: true,
59 },
60 },
David Srbecky3a284f82020-12-07 18:49:34 +000061 android_x86_64: {
Christopher Ferris0d38e852019-12-11 09:37:19 -080062 strip: {
63 keep_symbols: true,
64 },
65 },
66 },
67}
68
Nicolas Geoffray8a229072018-05-10 16:34:14 +010069libart_cc_defaults {
Colin Cross1f7f3bd2016-07-27 10:12:38 -070070 name: "libart_defaults",
71 defaults: ["art_defaults"],
72 host_supported: true,
73 srcs: [
Chang Xing605fe242017-07-20 15:57:21 -070074 "aot_class_linker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070075 "art_field.cc",
Calin Juravle33787682019-07-26 14:27:18 -070076 "sdk_checker.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070077 "art_method.cc",
Alex Light543d8452018-07-13 16:25:58 +000078 "backtrace_helper.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070079 "barrier.cc",
Andreas Gampe7cc45fd2018-11-21 16:03:08 -080080 "base/locks.cc",
David Sehr3215fff2018-04-03 17:10:12 -070081 "base/mem_map_arena_pool.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070082 "base/mutex.cc",
David Sehrc431b9d2018-03-02 12:01:51 -080083 "base/quasi_atomic.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070084 "base/timing_logger.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -070085 "cha.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070086 "class_linker.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -070087 "class_loader_context.cc",
Vladimir Markob4eb1b12018-05-24 11:09:38 +010088 "class_root.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070089 "class_table.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070090 "common_throws.cc",
Andrei Onea037d2822020-11-19 00:20:04 +000091 "compat_framework.cc",
Vladimir Marko606adb32018-04-05 14:49:24 +010092 "debug_print.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070093 "debugger.cc",
David Sehr9e734c72018-01-04 17:56:19 -080094 "dex/dex_file_annotations.cc",
David Srbeckye1402122018-06-13 18:20:45 +010095 "dex_register_location.cc",
Nicolas Geoffray4e868fa2017-04-21 17:16:44 +010096 "dex_to_dex_decompiler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070097 "elf_file.cc",
David Sehr97c381e2017-02-01 15:09:58 -080098 "exec_utils.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -070099 "fault_handler.cc",
100 "gc/allocation_record.cc",
101 "gc/allocator/dlmalloc.cc",
102 "gc/allocator/rosalloc.cc",
103 "gc/accounting/bitmap.cc",
104 "gc/accounting/card_table.cc",
105 "gc/accounting/heap_bitmap.cc",
106 "gc/accounting/mod_union_table.cc",
107 "gc/accounting/remembered_set.cc",
108 "gc/accounting/space_bitmap.cc",
109 "gc/collector/concurrent_copying.cc",
110 "gc/collector/garbage_collector.cc",
111 "gc/collector/immune_region.cc",
112 "gc/collector/immune_spaces.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700113 "gc/collector/mark_sweep.cc",
114 "gc/collector/partial_mark_sweep.cc",
115 "gc/collector/semi_space.cc",
116 "gc/collector/sticky_mark_sweep.cc",
117 "gc/gc_cause.cc",
118 "gc/heap.cc",
119 "gc/reference_processor.cc",
120 "gc/reference_queue.cc",
121 "gc/scoped_gc_critical_section.cc",
122 "gc/space/bump_pointer_space.cc",
123 "gc/space/dlmalloc_space.cc",
124 "gc/space/image_space.cc",
125 "gc/space/large_object_space.cc",
126 "gc/space/malloc_space.cc",
127 "gc/space/region_space.cc",
128 "gc/space/rosalloc_space.cc",
129 "gc/space/space.cc",
130 "gc/space/zygote_space.cc",
131 "gc/task_processor.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700132 "gc/verification.cc",
Alex Lightc1ad13a2020-03-24 11:37:45 -0700133 "handle.cc",
Andreas Gampeaa120012018-03-28 16:23:24 -0700134 "hidden_api.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700135 "hprof/hprof.cc",
136 "image.cc",
Vladimir Markof3c52b42017-11-17 17:32:12 +0000137 "index_bss_mapping.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700138 "indirect_reference_table.cc",
139 "instrumentation.cc",
140 "intern_table.cc",
141 "interpreter/interpreter.cc",
David Srbecky912f36c2018-09-08 12:22:58 +0100142 "interpreter/interpreter_cache.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700143 "interpreter/interpreter_common.cc",
buzbee78f1bdc2017-03-01 10:55:57 -0800144 "interpreter/interpreter_intrinsics.cc",
David Srbecky2ee09ff2018-10-24 13:24:22 +0100145 "interpreter/interpreter_switch_impl0.cc",
146 "interpreter/interpreter_switch_impl1.cc",
147 "interpreter/interpreter_switch_impl2.cc",
148 "interpreter/interpreter_switch_impl3.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700149 "interpreter/lock_count_data.cc",
150 "interpreter/shadow_frame.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700151 "interpreter/unstarted_runtime.cc",
Andreas Gampe36a296f2017-06-13 14:11:11 -0700152 "java_frame_root_info.cc",
Wessam Hassaneinb5a10be2020-11-11 16:42:52 -0800153 "javaheapprof/javaheapsampler.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700154 "jit/debugger_interface.cc",
155 "jit/jit.cc",
156 "jit/jit_code_cache.cc",
Nicolas Geoffray2a905b22019-06-06 09:04:07 +0100157 "jit/jit_memory_region.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700158 "jit/profiling_info.cc",
159 "jit/profile_saver.cc",
Andreas Gampec0ed43e2018-06-18 10:47:15 -0700160 "jni/check_jni.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100161 "jni/java_vm_ext.cc",
162 "jni/jni_env_ext.cc",
Alex Light79d6c802019-06-27 15:50:11 +0000163 "jni/jni_id_manager.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100164 "jni/jni_internal.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700165 "linear_alloc.cc",
Orion Hodsonba28f9f2016-10-26 10:56:25 +0100166 "method_handles.cc",
Ulyana Trafimovichdbad1ef2021-02-17 13:46:00 +0000167 "metrics_reporter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700168 "mirror/array.cc",
169 "mirror/class.cc",
Alex Lightd6251582016-10-31 11:12:30 -0700170 "mirror/class_ext.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700171 "mirror/dex_cache.cc",
Narayan Kamath000e1882016-10-24 17:14:25 +0100172 "mirror/emulated_stack_frame.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100173 "mirror/executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700174 "mirror/field.cc",
175 "mirror/method.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100176 "mirror/method_handle_impl.cc",
Orion Hodsonc069a302017-01-18 09:23:12 +0000177 "mirror/method_handles_lookup.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100178 "mirror/method_type.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700179 "mirror/object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700180 "mirror/stack_trace_element.cc",
181 "mirror/string.cc",
182 "mirror/throwable.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100183 "mirror/var_handle.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700184 "monitor.cc",
Vladimir Markof52d92f2019-03-29 12:33:02 +0000185 "monitor_objects_stack_visitor.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700186 "native_bridge_art_interface.cc",
187 "native_stack_dump.cc",
188 "native/dalvik_system_DexFile.cc",
Dan Zimmermanb682ea42019-12-23 06:59:06 -0800189 "native/dalvik_system_BaseDexClassLoader.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700190 "native/dalvik_system_VMDebug.cc",
191 "native/dalvik_system_VMRuntime.cc",
192 "native/dalvik_system_VMStack.cc",
193 "native/dalvik_system_ZygoteHooks.cc",
194 "native/java_lang_Class.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700195 "native/java_lang_Object.cc",
196 "native/java_lang_String.cc",
197 "native/java_lang_StringFactory.cc",
198 "native/java_lang_System.cc",
199 "native/java_lang_Thread.cc",
200 "native/java_lang_Throwable.cc",
201 "native/java_lang_VMClassLoader.cc",
Narayan Kamathbd2fed52017-01-25 10:46:54 +0000202 "native/java_lang_invoke_MethodHandleImpl.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700203 "native/java_lang_ref_FinalizerReference.cc",
204 "native/java_lang_ref_Reference.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700205 "native/java_lang_reflect_Array.cc",
206 "native/java_lang_reflect_Constructor.cc",
Neil Fuller0e844392016-09-08 13:43:31 +0100207 "native/java_lang_reflect_Executable.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700208 "native/java_lang_reflect_Field.cc",
209 "native/java_lang_reflect_Method.cc",
Neil Fuller60458a02016-09-01 15:32:44 +0100210 "native/java_lang_reflect_Parameter.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700211 "native/java_lang_reflect_Proxy.cc",
212 "native/java_util_concurrent_atomic_AtomicLong.cc",
213 "native/libcore_util_CharsetUtils.cc",
214 "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc",
215 "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc",
216 "native/sun_misc_Unsafe.cc",
Alex Lighte77b48b2017-02-22 11:08:06 -0800217 "non_debuggable_classes.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000218 "nterp_helpers.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700219 "oat.cc",
220 "oat_file.cc",
221 "oat_file_assistant.cc",
222 "oat_file_manager.cc",
223 "oat_quick_method_header.cc",
224 "object_lock.cc",
225 "offsets.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700226 "parsed_options.cc",
227 "plugin.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700228 "quick_exception_handler.cc",
Andreas Gampeaea05c12017-05-19 08:45:02 -0700229 "read_barrier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700230 "reference_table.cc",
231 "reflection.cc",
Alex Light55eccdf2019-10-07 13:51:13 +0000232 "reflective_handle_scope.cc",
Alex Lightc18eba32019-09-24 14:36:27 -0700233 "reflective_value_visitor.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700234 "runtime.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000235 "runtime_callbacks.cc",
Roland Levillain21482ad2017-01-19 20:04:27 +0000236 "runtime_common.cc",
Orion Hodson26ef34c2017-11-01 13:32:41 +0000237 "runtime_intrinsics.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700238 "runtime_options.cc",
Andreas Gampec15a2f42017-04-21 12:09:39 -0700239 "scoped_thread_state_change.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700240 "signal_catcher.cc",
241 "stack.cc",
242 "stack_map.cc",
Vladimir Marko552a1342017-10-31 10:56:47 +0000243 "string_builder_append.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700244 "thread.cc",
245 "thread_list.cc",
246 "thread_pool.cc",
247 "ti/agent.cc",
248 "trace.cc",
249 "transaction.cc",
Orion Hodson537a4fe2018-05-15 13:57:58 +0100250 "var_handles.cc",
David Brazdil7b49e6c2016-09-01 11:06:18 +0100251 "vdex_file.cc",
Andreas Gampea43ba3d2019-03-13 15:49:20 -0700252 "verifier/class_verifier.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700253 "verifier/instruction_flags.cc",
254 "verifier/method_verifier.cc",
255 "verifier/reg_type.cc",
256 "verifier/reg_type_cache.cc",
257 "verifier/register_line.cc",
David Brazdilca3c8c32016-09-06 14:04:48 +0100258 "verifier/verifier_deps.cc",
Andreas Gampe90b936d2017-01-31 08:58:55 -0800259 "verify_object.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700260 "well_known_classes.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700261
262 "arch/context.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700263 "arch/instruction_set_features.cc",
264 "arch/memcmp16.cc",
265 "arch/arm/instruction_set_features_arm.cc",
266 "arch/arm/registers_arm.cc",
267 "arch/arm64/instruction_set_features_arm64.cc",
268 "arch/arm64/registers_arm64.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700269 "arch/x86/instruction_set_features_x86.cc",
270 "arch/x86/registers_x86.cc",
271 "arch/x86_64/registers_x86_64.cc",
272 "entrypoints/entrypoint_utils.cc",
273 "entrypoints/jni/jni_entrypoints.cc",
274 "entrypoints/math_entrypoints.cc",
275 "entrypoints/quick/quick_alloc_entrypoints.cc",
276 "entrypoints/quick/quick_cast_entrypoints.cc",
277 "entrypoints/quick/quick_deoptimization_entrypoints.cc",
278 "entrypoints/quick/quick_dexcache_entrypoints.cc",
Serban Constantinescuda8ffec2016-03-09 12:02:11 +0000279 "entrypoints/quick/quick_entrypoints_enum.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700280 "entrypoints/quick/quick_field_entrypoints.cc",
281 "entrypoints/quick/quick_fillarray_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700282 "entrypoints/quick/quick_jni_entrypoints.cc",
283 "entrypoints/quick/quick_lock_entrypoints.cc",
284 "entrypoints/quick/quick_math_entrypoints.cc",
Vladimir Marko552a1342017-10-31 10:56:47 +0000285 "entrypoints/quick/quick_string_builder_append_entrypoints.cc",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700286 "entrypoints/quick/quick_thread_entrypoints.cc",
287 "entrypoints/quick/quick_throw_entrypoints.cc",
288 "entrypoints/quick/quick_trampoline_entrypoints.cc",
289 ],
290
291 arch: {
292 arm: {
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700293 srcs: [
294 "interpreter/mterp/mterp.cc",
Nicolas Geoffraydd406c32020-11-22 22:53:18 +0000295 "interpreter/mterp/nterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100296 ":libart_mterp.arm",
Nicolas Geoffraydd406c32020-11-22 22:53:18 +0000297 ":libart_mterp.armng",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700298 "arch/arm/context_arm.cc",
299 "arch/arm/entrypoints_init_arm.cc",
300 "arch/arm/instruction_set_features_assembly_tests.S",
301 "arch/arm/jni_entrypoints_arm.S",
302 "arch/arm/memcmp16_arm.S",
303 "arch/arm/quick_entrypoints_arm.S",
304 "arch/arm/quick_entrypoints_cc_arm.cc",
305 "arch/arm/thread_arm.cc",
306 "arch/arm/fault_handler_arm.cc",
307 ],
308 },
309 arm64: {
310 srcs: [
311 "interpreter/mterp/mterp.cc",
Nicolas Geoffray4fc75692020-01-13 21:49:22 +0000312 "interpreter/mterp/nterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100313 ":libart_mterp.arm64",
Nicolas Geoffray4fc75692020-01-13 21:49:22 +0000314 ":libart_mterp.arm64ng",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700315 "arch/arm64/context_arm64.cc",
316 "arch/arm64/entrypoints_init_arm64.cc",
317 "arch/arm64/jni_entrypoints_arm64.S",
318 "arch/arm64/memcmp16_arm64.S",
319 "arch/arm64/quick_entrypoints_arm64.S",
320 "arch/arm64/thread_arm64.cc",
321 "monitor_pool.cc",
322 "arch/arm64/fault_handler_arm64.cc",
323 ],
324 },
325 x86: {
326 srcs: [
327 "interpreter/mterp/mterp.cc",
Nicolas Geoffray013d1ee2019-12-04 16:18:15 +0000328 "interpreter/mterp/nterp_stub.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100329 ":libart_mterp.x86",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700330 "arch/x86/context_x86.cc",
331 "arch/x86/entrypoints_init_x86.cc",
332 "arch/x86/jni_entrypoints_x86.S",
333 "arch/x86/memcmp16_x86.S",
334 "arch/x86/quick_entrypoints_x86.S",
335 "arch/x86/thread_x86.cc",
336 "arch/x86/fault_handler_x86.cc",
337 ],
jaishankbae88c02019-06-11 16:47:45 +0530338 avx: {
339 asflags: ["-DMTERP_USE_AVX"],
340 },
341 avx2: {
342 asflags: ["-DMTERP_USE_AVX"],
343 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700344 },
345 x86_64: {
346 srcs: [
347 // Note that the fault_handler_x86.cc is not a mistake. This file is
348 // shared between the x86 and x86_64 architectures.
349 "interpreter/mterp/mterp.cc",
Nicolas Geoffray00391822019-12-10 10:17:23 +0000350 "interpreter/mterp/nterp.cc",
David Srbeckybfbc6542018-09-11 13:34:57 +0100351 ":libart_mterp.x86_64",
Nicolas Geoffray00391822019-12-10 10:17:23 +0000352 ":libart_mterp.x86_64ng",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700353 "arch/x86_64/context_x86_64.cc",
354 "arch/x86_64/entrypoints_init_x86_64.cc",
355 "arch/x86_64/jni_entrypoints_x86_64.S",
356 "arch/x86_64/memcmp16_x86_64.S",
357 "arch/x86_64/quick_entrypoints_x86_64.S",
358 "arch/x86_64/thread_x86_64.cc",
359 "monitor_pool.cc",
360 "arch/x86/fault_handler_x86.cc",
361 ],
jaishankbae88c02019-06-11 16:47:45 +0530362 avx: {
363 asflags: ["-DMTERP_USE_AVX"],
364 },
365 avx2: {
366 asflags: ["-DMTERP_USE_AVX"],
367 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700368 },
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700369 },
370 target: {
371 android: {
372 srcs: [
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700373 "monitor_android.cc",
374 "runtime_android.cc",
375 "thread_android.cc",
376 ],
377 shared_libs: [
dimitry268aa302019-03-19 12:25:03 +0100378 "libdl_android",
Victor Chang8b247622020-09-22 21:48:15 +0100379 "libicu",
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700380 "libz", // For adler32.
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000381 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700382 },
383 android_arm: {
384 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
385 },
386 android_arm64: {
387 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
388 },
389 android_x86: {
390 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
391 },
392 android_x86_64: {
393 ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS,
394 },
395 host: {
396 srcs: [
397 "monitor_linux.cc",
398 "runtime_linux.cc",
399 "thread_linux.cc",
400 ],
Victor Changb72a0942020-03-12 12:10:39 +0000401 header_libs: [
402 "libicuuc_headers",
403 ],
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000404 shared_libs: [
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700405 "libz", // For adler32.
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000406 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700407 },
408 },
409 cflags: ["-DBUILDING_LIBART=1"],
410 generated_sources: ["art_operator_srcs"],
Igor Murashkin2bb70d32017-02-06 10:34:14 -0800411 // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator
412 generated_headers: ["cpp-define-generator-asm-support"],
413 // export our headers so the libart-gtest targets can use it as well.
414 export_generated_headers: ["cpp-define-generator-asm-support"],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700415 header_libs: [
416 "art_cmdlineparser_headers",
David Srbecky50b47432018-10-18 12:26:34 +0100417 "cpp-define-generator-definitions",
Andreas Gamped863be72017-09-12 12:02:28 -0700418 "jni_platform_headers",
Orion Hodson00cb81d2020-04-03 06:47:07 +0100419 "libnativehelper_header_only",
Andreas Gampe3157fc22017-08-23 09:43:46 -0700420 ],
Daniil Riazanovskiy96360622020-09-16 23:26:52 +0000421 whole_static_libs: [
422 "libcpu_features",
423 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700424 shared_libs: [
Orion Hodson119733d2019-01-30 15:14:41 +0000425 "libartpalette",
Martin Stjernholm2eb1f832020-09-17 00:25:52 +0100426 "libbacktrace",
427 "libbase", // For common macros.
428 "liblog",
429 "liblz4",
430 "liblzma", // libelffile(d) dependency; must be repeated here since it's a static lib.
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700431 "libnativebridge",
432 "libnativeloader",
Colin Cross616f4002019-05-29 21:39:14 -0700433 "libsigchain",
Martin Stjernholm2eb1f832020-09-17 00:25:52 +0100434 "libunwindstack",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700435 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700436 export_include_dirs: ["."],
Andreas Gampeaaadff82016-08-29 09:53:48 -0700437 // ART's macros.h depends on libbase's macros.h.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700438 // Note: runtime_options.h depends on cmdline. But we don't really want to export this
439 // generically. dex2oat takes care of it itself.
David Sehrfcbe15c2018-02-15 09:41:13 -0800440 export_shared_lib_headers: ["libbase"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700441}
442
Andreas Gampeec5ed062018-01-26 16:20:02 -0800443libart_static_cc_defaults {
444 name: "libart_static_base_defaults",
Martin Stjernholm35f765b2020-09-23 00:38:38 +0100445 whole_static_libs: [
Orion Hodson119733d2019-01-30 15:14:41 +0000446 "libartpalette",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800447 "libbacktrace",
448 "libbase",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800449 "liblog",
Martin Stjernholm2eb1f832020-09-17 00:25:52 +0100450 "liblz4",
451 "liblzma", // libelffile dependency; must be repeated here since it's a static lib.
Andreas Gampeec5ed062018-01-26 16:20:02 -0800452 "libnativebridge",
453 "libnativeloader",
David Srbeckyd3ee9022020-07-27 16:05:38 +0100454 "libsigchain_fake",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800455 "libunwindstack",
Nicolas Geoffray65ed42a2018-10-30 12:33:04 +0000456 "libz",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800457 ],
458}
459
460cc_defaults {
461 name: "libart_static_defaults",
462 defaults: [
463 "libart_static_base_defaults",
464 "libartbase_static_defaults",
465 "libdexfile_static_defaults",
Martin Stjernholm68e5db52020-09-23 20:43:56 +0100466 "libdexfile_support_static_defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800467 "libprofile_static_defaults",
468 ],
Martin Stjernholm35f765b2020-09-23 00:38:38 +0100469 whole_static_libs: [
David Srbecky50928112019-03-22 17:06:28 +0000470 "libart",
471 "libelffile",
472 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -0800473}
474
475cc_defaults {
476 name: "libartd_static_defaults",
477 defaults: [
478 "libart_static_base_defaults",
479 "libartbased_static_defaults",
480 "libdexfiled_static_defaults",
Martin Stjernholm68e5db52020-09-23 20:43:56 +0100481 "libdexfiled_support_static_defaults",
Andreas Gampeec5ed062018-01-26 16:20:02 -0800482 "libprofiled_static_defaults",
483 ],
Martin Stjernholm35f765b2020-09-23 00:38:38 +0100484 whole_static_libs: [
David Srbecky50928112019-03-22 17:06:28 +0000485 "libartd",
486 "libelffiled",
487 ],
Andreas Gampeec5ed062018-01-26 16:20:02 -0800488}
489
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700490gensrcs {
491 name: "art_operator_srcs",
Alex Lightb69d2d32018-02-21 13:37:17 -0800492 cmd: "$(location generate_operator_out) art/runtime $(in) > $(out)",
493 tools: ["generate_operator_out"],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700494 srcs: [
Andreas Gampe8764dc32019-01-07 15:20:12 -0800495 "base/callee_save_type.h",
Andreas Gampe7cc45fd2018-11-21 16:03:08 -0800496 "base/locks.h",
Andreas Gampeee5303f2017-08-31 15:34:42 -0700497 "class_status.h",
Nicolas Geoffray0d60a2b2020-06-17 14:31:56 +0100498 "compilation_kind.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700499 "gc_root.h",
500 "gc/allocator_type.h",
501 "gc/allocator/rosalloc.h",
502 "gc/collector_type.h",
503 "gc/collector/gc_type.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700504 "gc/space/region_space.h",
505 "gc/space/space.h",
506 "gc/weak_root_state.h",
507 "image.h",
508 "instrumentation.h",
509 "indirect_reference_table.h",
Alex Light40320712017-12-14 11:52:04 -0800510 "jdwp_provider.h",
Alex Light79d6c802019-06-27 15:50:11 +0000511 "jni_id_type.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700512 "lock_word.h",
Vladimir Markod3d00c02019-11-07 15:09:07 +0000513 "oat_file.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700514 "process_state.h",
Alex Lightc18eba32019-09-24 14:36:27 -0700515 "reflective_value_visitor.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700516 "stack.h",
Alex Light46f93402017-06-29 11:59:50 -0700517 "suspend_reason.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700518 "thread.h",
519 "thread_state.h",
Orion Hodson283ad2d2018-03-26 13:37:41 +0100520 "trace.h",
Andreas Gampe6d7abbd2017-04-24 13:19:09 -0700521 "verifier/verifier_enums.h",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700522 ],
523 output_extension: "operator_out.cc",
524}
525
526// We always build dex2oat and dependencies, even if the host build is otherwise disabled, since
527// they are used to cross compile for the target.
528
529art_cc_library {
530 name: "libart",
Christopher Ferris0d38e852019-12-11 09:37:19 -0800531 defaults: [
532 "libart_defaults",
533 "libart_nativeunwind_defaults",
Yi Kongf579b062020-10-24 22:54:39 +0800534 "art_pgo_defaults",
Christopher Ferris0d38e852019-12-11 09:37:19 -0800535 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800536 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800537 ],
David Srbecky50928112019-03-22 17:06:28 +0000538 static_libs: [
539 "libelffile",
540 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800541 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700542 "libartbase",
David Sehrc431b9d2018-03-02 12:01:51 -0800543 "libdexfile",
David Srbecky7711c352019-04-10 17:50:12 +0100544 // We need to eagerly load it so libdexfile_support used from libunwindstack can find it.
545 "libdexfile_external",
David Sehr82d046e2018-04-23 08:14:19 -0700546 "libprofile",
David Sehrc431b9d2018-03-02 12:01:51 -0800547 ],
548 export_shared_lib_headers: [
549 "libdexfile",
550 ],
Yi Kongfd8bb932018-03-12 16:52:57 -0700551 target: {
552 android: {
553 lto: {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700554 thin: true,
Yi Kongfd8bb932018-03-12 16:52:57 -0700555 },
556 },
557 },
Jiyong Park066dd9022019-12-19 02:11:59 +0000558 apex_available: [
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100559 "com.android.art",
Jiyong Park066dd9022019-12-19 02:11:59 +0000560 "com.android.art.debug",
561 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700562}
563
564art_cc_library {
565 name: "libartd",
566 defaults: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700567 "art_debug_defaults",
568 "libart_defaults",
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700569 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800570 whole_static_libs: [
David Sehrc431b9d2018-03-02 12:01:51 -0800571 ],
David Srbecky50928112019-03-22 17:06:28 +0000572 static_libs: [
573 "libelffiled",
574 ],
David Sehrc431b9d2018-03-02 12:01:51 -0800575 shared_libs: [
David Sehr1f010162018-05-15 08:59:32 -0700576 "libartbased",
David Sehrc431b9d2018-03-02 12:01:51 -0800577 "libdexfiled",
David Srbecky7711c352019-04-10 17:50:12 +0100578 // We need to eagerly preload it, so that libunwindstack can find it.
579 // Otherwise, it would try to load the non-debug version with dlopen.
580 "libdexfiled_external",
David Sehr82d046e2018-04-23 08:14:19 -0700581 "libprofiled",
David Sehrc431b9d2018-03-02 12:01:51 -0800582 ],
583 export_shared_lib_headers: [
584 "libdexfiled",
585 ],
Jiyong Park066dd9022019-12-19 02:11:59 +0000586 apex_available: [
587 "com.android.art.debug",
588 ],
Colin Cross1f7f3bd2016-07-27 10:12:38 -0700589}
590
Colin Cross6b22aa52016-09-12 14:35:39 -0700591art_cc_library {
592 name: "libart-runtime-gtest",
593 defaults: ["libart-gtest-defaults"],
Calin Juravle36eb3132017-01-13 16:32:38 -0800594 srcs: [
595 "common_runtime_test.cc",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700596 "dexopt_test.cc",
Calin Juravle36eb3132017-01-13 16:32:38 -0800597 ],
Colin Cross6b22aa52016-09-12 14:35:39 -0700598 shared_libs: [
599 "libartd",
David Srbecky2faab002019-02-12 16:35:48 +0000600 "libartbase-art-gtest",
Andreas Gampe3fec9ac2016-09-13 10:47:28 -0700601 "libbase",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700602 "libbacktrace",
Andreas Gampe373a9b52017-10-18 09:01:57 -0700603 ],
604 header_libs: [
605 "libnativehelper_header_only",
Colin Cross6b22aa52016-09-12 14:35:39 -0700606 ],
607}
608
Colin Cross6e95dd52016-09-12 15:37:10 -0700609art_cc_test {
610 name: "art_runtime_tests",
611 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700612 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700613 ],
David Srbecky4a88a5a2020-05-05 16:21:57 +0100614 data: [
615 ":art-gtest-jars-AllFields",
616 ":art-gtest-jars-ErroneousA",
617 ":art-gtest-jars-ErroneousB",
618 ":art-gtest-jars-ErroneousInit",
619 ":art-gtest-jars-Extension1",
620 ":art-gtest-jars-Extension2",
621 ":art-gtest-jars-ForClassLoaderA",
622 ":art-gtest-jars-ForClassLoaderB",
623 ":art-gtest-jars-ForClassLoaderC",
624 ":art-gtest-jars-ForClassLoaderD",
625 ":art-gtest-jars-HiddenApiSignatures",
626 ":art-gtest-jars-IMTA",
627 ":art-gtest-jars-IMTB",
628 ":art-gtest-jars-Instrumentation",
629 ":art-gtest-jars-Interfaces",
630 ":art-gtest-jars-LinkageTest",
631 ":art-gtest-jars-Main",
632 ":art-gtest-jars-MainStripped",
633 ":art-gtest-jars-MainUncompressedAligned",
634 ":art-gtest-jars-MethodTypes",
635 ":art-gtest-jars-MultiDex",
636 ":art-gtest-jars-MultiDexModifiedSecondary",
637 ":art-gtest-jars-MultiDexUncompressedAligned",
638 ":art-gtest-jars-MyClass",
639 ":art-gtest-jars-MyClassNatives",
640 ":art-gtest-jars-Nested",
641 ":art-gtest-jars-Packages",
642 ":art-gtest-jars-ProfileTestMultiDex",
643 ":art-gtest-jars-ProtoCompare",
644 ":art-gtest-jars-ProtoCompare2",
645 ":art-gtest-jars-StaticLeafMethods",
646 ":art-gtest-jars-Statics",
647 ":art-gtest-jars-StaticsFromCode",
648 ":art-gtest-jars-Transaction",
649 ":art-gtest-jars-VerifierDeps",
650 ":art-gtest-jars-VerifierDepsMulti",
651 ":art-gtest-jars-XandY",
652 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700653 srcs: [
654 "arch/arch_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700655 "arch/instruction_set_features_test.cc",
656 "arch/memcmp16_test.cc",
657 "arch/stub_test.cc",
658 "arch/arm/instruction_set_features_arm_test.cc",
659 "arch/arm64/instruction_set_features_arm64_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700660 "arch/x86/instruction_set_features_x86_test.cc",
661 "arch/x86_64/instruction_set_features_x86_64_test.cc",
662 "barrier_test.cc",
Eric Holka1cc5402020-12-04 23:37:11 +0000663 "base/message_queue_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700664 "base/mutex_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700665 "base/timing_logger_test.cc",
Mingyao Yang063fc772016-08-02 11:02:54 -0700666 "cha_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700667 "class_linker_test.cc",
Calin Juravle87e2cb62017-06-13 21:48:45 -0700668 "class_loader_context_test.cc",
Mathieu Chartierdb70ce52016-12-12 11:06:59 -0800669 "class_table_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700670 "entrypoints/math_entrypoints_test.cc",
671 "entrypoints/quick/quick_trampoline_entrypoints_test.cc",
672 "entrypoints_order_test.cc",
David Sehrb2ec9f52018-02-21 13:20:31 -0800673 "exec_utils_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700674 "gc/accounting/card_table_test.cc",
675 "gc/accounting/mod_union_table_test.cc",
676 "gc/accounting/space_bitmap_test.cc",
677 "gc/collector/immune_spaces_test.cc",
678 "gc/heap_test.cc",
Mathieu Chartier1ca68902017-04-18 11:26:22 -0700679 "gc/heap_verification_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700680 "gc/reference_queue_test.cc",
681 "gc/space/dlmalloc_space_static_test.cc",
682 "gc/space/dlmalloc_space_random_test.cc",
Richard Uhler84f50ae2017-02-06 15:12:45 +0000683 "gc/space/image_space_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700684 "gc/space/large_object_space_test.cc",
685 "gc/space/rosalloc_space_static_test.cc",
686 "gc/space/rosalloc_space_random_test.cc",
687 "gc/space/space_create_test.cc",
688 "gc/system_weak_test.cc",
689 "gc/task_processor_test.cc",
690 "gtest_test.cc",
691 "handle_scope_test.cc",
Mathew Inwood7d74ef52018-03-16 14:18:33 +0000692 "hidden_api_test.cc",
Andreas Gampea1ff30f2016-09-27 12:19:45 -0700693 "imtable_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700694 "indirect_reference_table_test.cc",
695 "instrumentation_test.cc",
696 "intern_table_test.cc",
697 "interpreter/safe_math_test.cc",
698 "interpreter/unstarted_runtime_test.cc",
Nicolas Geoffray2411f492019-06-14 08:54:46 +0100699 "jit/jit_memory_region_test.cc",
Calin Juravlef70dfec2019-10-02 18:58:19 -0700700 "jit/profile_saver_test.cc",
David Sehr1fed3432018-05-29 13:19:47 -0700701 "jit/profiling_info_test.cc",
Vladimir Markoa3ad0cd2018-05-04 10:06:38 +0100702 "jni/java_vm_ext_test.cc",
Vladimir Marko2b076df2019-02-20 11:27:52 +0000703 "jni/jni_internal_test.cc",
Orion Hodsonc1d3bac2018-01-26 14:38:55 +0000704 "method_handles_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700705 "mirror/dex_cache_test.cc",
Narayan Kamathafa48272016-08-03 12:46:58 +0100706 "mirror/method_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700707 "mirror/object_test.cc",
Orion Hodson005ac512017-10-24 15:43:43 +0100708 "mirror/var_handle_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700709 "monitor_pool_test.cc",
710 "monitor_test.cc",
711 "oat_file_test.cc",
712 "oat_file_assistant_test.cc",
713 "parsed_options_test.cc",
714 "prebuilt_tools_test.cc",
Vladimir Marko2b076df2019-02-20 11:27:52 +0000715 "proxy_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700716 "reference_table_test.cc",
Andreas Gampe04bbb5b2017-01-19 17:49:03 +0000717 "runtime_callbacks_test.cc",
Andreas Gampeba26b512019-05-31 13:07:26 -0700718 "runtime_test.cc",
Igor Murashkinf31a00c2017-10-27 10:52:07 -0700719 "subtype_check_info_test.cc",
Igor Murashkin495e7832017-10-27 10:56:20 -0700720 "subtype_check_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700721 "thread_pool_test.cc",
722 "transaction_test.cc",
Nicolas Geoffray21b65682019-03-12 00:49:45 +0000723 "two_runtimes_test.cc",
Richard Uhlerb8ab63a2017-01-31 11:27:37 +0000724 "vdex_file_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700725 "verifier/method_verifier_test.cc",
726 "verifier/reg_type_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700727 ],
Yo Chiang169dfb42020-08-07 04:22:18 +0000728 target: {
729 host: {
730 required: ["dex2oatd"],
731 },
732 },
Colin Cross6e95dd52016-09-12 15:37:10 -0700733 shared_libs: [
734 "libbacktrace",
735 ],
Andreas Gampe3157fc22017-08-23 09:43:46 -0700736 header_libs: [
Dan Willemsen2ca27802017-09-27 14:57:43 -0700737 "art_cmdlineparser_headers", // For parsed_options_test.
Andreas Gampe3157fc22017-08-23 09:43:46 -0700738 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700739}
740
741art_cc_test {
742 name: "art_runtime_compiler_tests",
743 defaults: [
Colin Crossafd3c9e2016-09-16 13:47:21 -0700744 "art_gtest_defaults",
Colin Cross6e95dd52016-09-12 15:37:10 -0700745 ],
746 srcs: [
Colin Cross6e95dd52016-09-12 15:37:10 -0700747 "reflection_test.cc",
Vladimir Markob9c29f62019-03-20 14:22:51 +0000748 "module_exclusion_test.cc",
Colin Cross6e95dd52016-09-12 15:37:10 -0700749 ],
Yo Chiang169dfb42020-08-07 04:22:18 +0000750 target: {
751 host: {
752 required: ["dex2oatd"],
753 },
754 },
David Srbecky4a88a5a2020-05-05 16:21:57 +0100755 data: [
756 ":art-gtest-jars-Main",
757 ":art-gtest-jars-NonStaticLeafMethods",
758 ":art-gtest-jars-StaticLeafMethods",
759 ],
Colin Cross6e95dd52016-09-12 15:37:10 -0700760 shared_libs: [
761 "libartd-compiler",
Roland Levillain12dd9ae2018-11-06 13:32:06 +0000762 "libvixld",
Colin Cross6e95dd52016-09-12 15:37:10 -0700763 ],
764}
Igor Murashkin0ae15322017-09-14 13:55:06 -0700765
766cc_library_headers {
Paul Duffin4345aac2019-07-17 15:51:54 +0100767 name: "libart_runtime_headers_ndk",
Dan Willemsen2ca27802017-09-27 14:57:43 -0700768 host_supported: true,
769 export_include_dirs: ["."],
Paul Duffin4345aac2019-07-17 15:51:54 +0100770 sdk_version: "current",
Jiyong Park71f661c2020-04-28 18:20:43 +0900771
772 apex_available: [
Martin Stjernholm3e9abfc2020-10-09 22:17:51 +0100773 "com.android.art",
Jiyong Park71f661c2020-04-28 18:20:43 +0900774 "com.android.art.debug",
Jiyong Park71f661c2020-04-28 18:20:43 +0900775 ],
Igor Murashkin0ae15322017-09-14 13:55:06 -0700776}
David Srbeckybfbc6542018-09-11 13:34:57 +0100777
778genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700779 name: "libart_mterp.arm",
780 out: ["mterp_arm.S"],
781 srcs: ["interpreter/mterp/arm/*.S"],
782 tool_files: [
783 "interpreter/mterp/gen_mterp.py",
784 "interpreter/mterp/common/gen_setup.py",
Colin Cross7b550652020-11-17 10:12:52 -0800785 ":art_libdexfile_dex_instruction_list_header",
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700786 ],
787 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100788}
789
790genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700791 name: "libart_mterp.arm64",
792 out: ["mterp_arm64.S"],
793 srcs: ["interpreter/mterp/arm64/*.S"],
794 tool_files: [
795 "interpreter/mterp/gen_mterp.py",
796 "interpreter/mterp/common/gen_setup.py",
Colin Cross7b550652020-11-17 10:12:52 -0800797 ":art_libdexfile_dex_instruction_list_header",
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700798 ],
799 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100800}
801
802genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700803 name: "libart_mterp.x86",
804 out: ["mterp_x86.S"],
805 srcs: ["interpreter/mterp/x86/*.S"],
806 tool_files: [
807 "interpreter/mterp/gen_mterp.py",
808 "interpreter/mterp/common/gen_setup.py",
Colin Cross7b550652020-11-17 10:12:52 -0800809 ":art_libdexfile_dex_instruction_list_header",
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700810 ],
811 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100812}
813
814genrule {
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700815 name: "libart_mterp.x86_64",
816 out: ["mterp_x86_64.S"],
817 srcs: ["interpreter/mterp/x86_64/*.S"],
818 tool_files: [
819 "interpreter/mterp/gen_mterp.py",
820 "interpreter/mterp/common/gen_setup.py",
Colin Cross7b550652020-11-17 10:12:52 -0800821 ":art_libdexfile_dex_instruction_list_header",
Andreas Gampe0dc93b12019-05-15 10:30:22 -0700822 ],
823 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
David Srbeckybfbc6542018-09-11 13:34:57 +0100824}
Nicolas Geoffray00391822019-12-10 10:17:23 +0000825
826genrule {
827 name: "libart_mterp.x86_64ng",
828 out: ["mterp_x86_64ng.S"],
Dan Zimmerman467defb2019-12-26 12:39:23 -0800829 srcs: [
830 "interpreter/mterp/x86_64ng/*.S",
831 "interpreter/mterp/x86_64/arithmetic.S",
832 "interpreter/mterp/x86_64/floating_point.S",
833 ],
Nicolas Geoffray00391822019-12-10 10:17:23 +0000834 tool_files: [
835 "interpreter/mterp/gen_mterp.py",
836 "interpreter/mterp/common/gen_setup.py",
Colin Cross7b550652020-11-17 10:12:52 -0800837 ":art_libdexfile_dex_instruction_list_header",
Nicolas Geoffray00391822019-12-10 10:17:23 +0000838 ],
839 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
840}
Nicolas Geoffray4fc75692020-01-13 21:49:22 +0000841
842genrule {
843 name: "libart_mterp.arm64ng",
844 out: ["mterp_arm64ng.S"],
845 srcs: [
846 "interpreter/mterp/arm64ng/*.S",
847 "interpreter/mterp/arm64/arithmetic.S",
848 "interpreter/mterp/arm64/floating_point.S",
849 ],
850 tool_files: [
851 "interpreter/mterp/gen_mterp.py",
852 "interpreter/mterp/common/gen_setup.py",
Colin Cross7b550652020-11-17 10:12:52 -0800853 ":art_libdexfile_dex_instruction_list_header",
Nicolas Geoffray4fc75692020-01-13 21:49:22 +0000854 ],
855 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
856}
Nicolas Geoffraydd406c32020-11-22 22:53:18 +0000857
858genrule {
859 name: "libart_mterp.armng",
860 out: ["mterp_armng.S"],
861 srcs: [
862 "interpreter/mterp/armng/*.S",
863 ],
864 tool_files: [
865 "interpreter/mterp/gen_mterp.py",
866 "interpreter/mterp/common/gen_setup.py",
Colin Crossdf385372020-12-01 10:39:20 -0800867 ":art_libdexfile_dex_instruction_list_header",
Nicolas Geoffraydd406c32020-11-22 22:53:18 +0000868 ],
869 cmd: "$(location interpreter/mterp/gen_mterp.py) $(out) $(in)",
870}