Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 1 | // |
| 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. |
| 21 | JIT_DEBUG_REGISTER_CODE_LDFLAGS = ["-Wl,--keep-unique,__jit_debug_register_code"] |
| 22 | |
| 23 | cc_defaults { |
| 24 | name: "libart_defaults", |
| 25 | defaults: ["art_defaults"], |
| 26 | host_supported: true, |
| 27 | srcs: [ |
| 28 | "art_field.cc", |
| 29 | "art_method.cc", |
| 30 | "atomic.cc", |
| 31 | "barrier.cc", |
| 32 | "base/allocator.cc", |
| 33 | "base/arena_allocator.cc", |
| 34 | "base/arena_bit_vector.cc", |
| 35 | "base/bit_vector.cc", |
| 36 | "base/file_magic.cc", |
| 37 | "base/hex_dump.cc", |
| 38 | "base/logging.cc", |
| 39 | "base/mutex.cc", |
Josh Gao | 682282e | 2017-04-17 18:31:26 -0700 | [diff] [blame] | 40 | "base/safe_copy.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 41 | "base/scoped_arena_allocator.cc", |
| 42 | "base/scoped_flock.cc", |
| 43 | "base/stringpiece.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 44 | "base/time_utils.cc", |
| 45 | "base/timing_logger.cc", |
| 46 | "base/unix_file/fd_file.cc", |
| 47 | "base/unix_file/random_access_file_utils.cc", |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 48 | "cha.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 49 | "check_jni.cc", |
| 50 | "class_linker.cc", |
| 51 | "class_table.cc", |
| 52 | "code_simulator_container.cc", |
| 53 | "common_throws.cc", |
| 54 | "compiler_filter.cc", |
| 55 | "debugger.cc", |
| 56 | "dex_file.cc", |
Bharadwaj Kalandhabhatta | 0bb4031 | 2017-06-01 10:47:00 -0700 | [diff] [blame] | 57 | "dex_file_tracking_registrar.cc", |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame] | 58 | "dex_file_annotations.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 59 | "dex_file_verifier.cc", |
| 60 | "dex_instruction.cc", |
Nicolas Geoffray | 4e868fa | 2017-04-21 17:16:44 +0100 | [diff] [blame] | 61 | "dex_to_dex_decompiler.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 62 | "elf_file.cc", |
David Sehr | 97c381e | 2017-02-01 15:09:58 -0800 | [diff] [blame] | 63 | "exec_utils.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 64 | "fault_handler.cc", |
| 65 | "gc/allocation_record.cc", |
| 66 | "gc/allocator/dlmalloc.cc", |
| 67 | "gc/allocator/rosalloc.cc", |
| 68 | "gc/accounting/bitmap.cc", |
| 69 | "gc/accounting/card_table.cc", |
| 70 | "gc/accounting/heap_bitmap.cc", |
| 71 | "gc/accounting/mod_union_table.cc", |
| 72 | "gc/accounting/remembered_set.cc", |
| 73 | "gc/accounting/space_bitmap.cc", |
| 74 | "gc/collector/concurrent_copying.cc", |
| 75 | "gc/collector/garbage_collector.cc", |
| 76 | "gc/collector/immune_region.cc", |
| 77 | "gc/collector/immune_spaces.cc", |
| 78 | "gc/collector/mark_compact.cc", |
| 79 | "gc/collector/mark_sweep.cc", |
| 80 | "gc/collector/partial_mark_sweep.cc", |
| 81 | "gc/collector/semi_space.cc", |
| 82 | "gc/collector/sticky_mark_sweep.cc", |
| 83 | "gc/gc_cause.cc", |
| 84 | "gc/heap.cc", |
| 85 | "gc/reference_processor.cc", |
| 86 | "gc/reference_queue.cc", |
| 87 | "gc/scoped_gc_critical_section.cc", |
| 88 | "gc/space/bump_pointer_space.cc", |
| 89 | "gc/space/dlmalloc_space.cc", |
| 90 | "gc/space/image_space.cc", |
| 91 | "gc/space/large_object_space.cc", |
| 92 | "gc/space/malloc_space.cc", |
| 93 | "gc/space/region_space.cc", |
| 94 | "gc/space/rosalloc_space.cc", |
| 95 | "gc/space/space.cc", |
| 96 | "gc/space/zygote_space.cc", |
| 97 | "gc/task_processor.cc", |
Mathieu Chartier | 1ca6890 | 2017-04-18 11:26:22 -0700 | [diff] [blame] | 98 | "gc/verification.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 99 | "hprof/hprof.cc", |
| 100 | "image.cc", |
| 101 | "indirect_reference_table.cc", |
| 102 | "instrumentation.cc", |
| 103 | "intern_table.cc", |
| 104 | "interpreter/interpreter.cc", |
| 105 | "interpreter/interpreter_common.cc", |
buzbee | 78f1bdc | 2017-03-01 10:55:57 -0800 | [diff] [blame] | 106 | "interpreter/interpreter_intrinsics.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 107 | "interpreter/interpreter_switch_impl.cc", |
| 108 | "interpreter/unstarted_runtime.cc", |
| 109 | "java_vm_ext.cc", |
| 110 | "jdwp/jdwp_event.cc", |
| 111 | "jdwp/jdwp_expand_buf.cc", |
| 112 | "jdwp/jdwp_handler.cc", |
| 113 | "jdwp/jdwp_main.cc", |
| 114 | "jdwp/jdwp_request.cc", |
| 115 | "jdwp/jdwp_socket.cc", |
| 116 | "jdwp/object_registry.cc", |
| 117 | "jni_env_ext.cc", |
| 118 | "jit/debugger_interface.cc", |
| 119 | "jit/jit.cc", |
| 120 | "jit/jit_code_cache.cc", |
Calin Juravle | 33083d6 | 2017-01-18 15:29:12 -0800 | [diff] [blame] | 121 | "jit/profile_compilation_info.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 122 | "jit/profiling_info.cc", |
| 123 | "jit/profile_saver.cc", |
| 124 | "jni_internal.cc", |
| 125 | "jobject_comparator.cc", |
| 126 | "linear_alloc.cc", |
Andreas Gampe | 513061a | 2017-06-01 09:17:34 -0700 | [diff] [blame] | 127 | "managed_stack.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 128 | "mem_map.cc", |
| 129 | "memory_region.cc", |
Orion Hodson | ba28f9f | 2016-10-26 10:56:25 +0100 | [diff] [blame] | 130 | "method_handles.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 131 | "mirror/array.cc", |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 132 | "mirror/call_site.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 133 | "mirror/class.cc", |
Alex Light | d625158 | 2016-10-31 11:12:30 -0700 | [diff] [blame] | 134 | "mirror/class_ext.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 135 | "mirror/dex_cache.cc", |
Narayan Kamath | 000e188 | 2016-10-24 17:14:25 +0100 | [diff] [blame] | 136 | "mirror/emulated_stack_frame.cc", |
Neil Fuller | 0e84439 | 2016-09-08 13:43:31 +0100 | [diff] [blame] | 137 | "mirror/executable.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 138 | "mirror/field.cc", |
| 139 | "mirror/method.cc", |
Narayan Kamath | afa4827 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 140 | "mirror/method_handle_impl.cc", |
Orion Hodson | c069a30 | 2017-01-18 09:23:12 +0000 | [diff] [blame] | 141 | "mirror/method_handles_lookup.cc", |
Narayan Kamath | afa4827 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 142 | "mirror/method_type.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 143 | "mirror/object.cc", |
| 144 | "mirror/reference.cc", |
| 145 | "mirror/stack_trace_element.cc", |
| 146 | "mirror/string.cc", |
| 147 | "mirror/throwable.cc", |
| 148 | "monitor.cc", |
| 149 | "native_bridge_art_interface.cc", |
| 150 | "native_stack_dump.cc", |
| 151 | "native/dalvik_system_DexFile.cc", |
| 152 | "native/dalvik_system_VMDebug.cc", |
| 153 | "native/dalvik_system_VMRuntime.cc", |
| 154 | "native/dalvik_system_VMStack.cc", |
| 155 | "native/dalvik_system_ZygoteHooks.cc", |
| 156 | "native/java_lang_Class.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 157 | "native/java_lang_Object.cc", |
| 158 | "native/java_lang_String.cc", |
| 159 | "native/java_lang_StringFactory.cc", |
| 160 | "native/java_lang_System.cc", |
| 161 | "native/java_lang_Thread.cc", |
| 162 | "native/java_lang_Throwable.cc", |
| 163 | "native/java_lang_VMClassLoader.cc", |
Vladimir Marko | e00e559 | 2017-02-24 14:58:29 +0000 | [diff] [blame] | 164 | "native/java_lang_Void.cc", |
Narayan Kamath | bd2fed5 | 2017-01-25 10:46:54 +0000 | [diff] [blame] | 165 | "native/java_lang_invoke_MethodHandleImpl.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 166 | "native/java_lang_ref_FinalizerReference.cc", |
| 167 | "native/java_lang_ref_Reference.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 168 | "native/java_lang_reflect_Array.cc", |
| 169 | "native/java_lang_reflect_Constructor.cc", |
Neil Fuller | 0e84439 | 2016-09-08 13:43:31 +0100 | [diff] [blame] | 170 | "native/java_lang_reflect_Executable.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 171 | "native/java_lang_reflect_Field.cc", |
| 172 | "native/java_lang_reflect_Method.cc", |
Neil Fuller | 60458a0 | 2016-09-01 15:32:44 +0100 | [diff] [blame] | 173 | "native/java_lang_reflect_Parameter.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 174 | "native/java_lang_reflect_Proxy.cc", |
| 175 | "native/java_util_concurrent_atomic_AtomicLong.cc", |
| 176 | "native/libcore_util_CharsetUtils.cc", |
| 177 | "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc", |
| 178 | "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc", |
| 179 | "native/sun_misc_Unsafe.cc", |
Alex Light | e77b48b | 2017-02-22 11:08:06 -0800 | [diff] [blame] | 180 | "non_debuggable_classes.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 181 | "oat.cc", |
| 182 | "oat_file.cc", |
| 183 | "oat_file_assistant.cc", |
| 184 | "oat_file_manager.cc", |
| 185 | "oat_quick_method_header.cc", |
| 186 | "object_lock.cc", |
| 187 | "offsets.cc", |
| 188 | "os_linux.cc", |
| 189 | "parsed_options.cc", |
| 190 | "plugin.cc", |
| 191 | "primitive.cc", |
| 192 | "quick_exception_handler.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 193 | "reference_table.cc", |
| 194 | "reflection.cc", |
| 195 | "runtime.cc", |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 196 | "runtime_callbacks.cc", |
Roland Levillain | 21482ad | 2017-01-19 20:04:27 +0000 | [diff] [blame] | 197 | "runtime_common.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 198 | "runtime_options.cc", |
Andreas Gampe | c15a2f4 | 2017-04-21 12:09:39 -0700 | [diff] [blame] | 199 | "scoped_thread_state_change.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 200 | "signal_catcher.cc", |
| 201 | "stack.cc", |
| 202 | "stack_map.cc", |
| 203 | "thread.cc", |
| 204 | "thread_list.cc", |
| 205 | "thread_pool.cc", |
| 206 | "ti/agent.cc", |
| 207 | "trace.cc", |
| 208 | "transaction.cc", |
| 209 | "type_lookup_table.cc", |
| 210 | "utf.cc", |
| 211 | "utils.cc", |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 212 | "vdex_file.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 213 | "verifier/instruction_flags.cc", |
| 214 | "verifier/method_verifier.cc", |
| 215 | "verifier/reg_type.cc", |
| 216 | "verifier/reg_type_cache.cc", |
| 217 | "verifier/register_line.cc", |
David Brazdil | ca3c8c3 | 2016-09-06 14:04:48 +0100 | [diff] [blame] | 218 | "verifier/verifier_deps.cc", |
Andreas Gampe | 90b936d | 2017-01-31 08:58:55 -0800 | [diff] [blame] | 219 | "verify_object.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 220 | "well_known_classes.cc", |
| 221 | "zip_archive.cc", |
| 222 | |
| 223 | "arch/context.cc", |
| 224 | "arch/instruction_set.cc", |
| 225 | "arch/instruction_set_features.cc", |
| 226 | "arch/memcmp16.cc", |
| 227 | "arch/arm/instruction_set_features_arm.cc", |
| 228 | "arch/arm/registers_arm.cc", |
| 229 | "arch/arm64/instruction_set_features_arm64.cc", |
| 230 | "arch/arm64/registers_arm64.cc", |
| 231 | "arch/mips/instruction_set_features_mips.cc", |
| 232 | "arch/mips/registers_mips.cc", |
| 233 | "arch/mips64/instruction_set_features_mips64.cc", |
| 234 | "arch/mips64/registers_mips64.cc", |
| 235 | "arch/x86/instruction_set_features_x86.cc", |
| 236 | "arch/x86/registers_x86.cc", |
| 237 | "arch/x86_64/registers_x86_64.cc", |
| 238 | "entrypoints/entrypoint_utils.cc", |
| 239 | "entrypoints/jni/jni_entrypoints.cc", |
| 240 | "entrypoints/math_entrypoints.cc", |
| 241 | "entrypoints/quick/quick_alloc_entrypoints.cc", |
| 242 | "entrypoints/quick/quick_cast_entrypoints.cc", |
| 243 | "entrypoints/quick/quick_deoptimization_entrypoints.cc", |
| 244 | "entrypoints/quick/quick_dexcache_entrypoints.cc", |
Serban Constantinescu | da8ffec | 2016-03-09 12:02:11 +0000 | [diff] [blame] | 245 | "entrypoints/quick/quick_entrypoints_enum.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 246 | "entrypoints/quick/quick_field_entrypoints.cc", |
| 247 | "entrypoints/quick/quick_fillarray_entrypoints.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 248 | "entrypoints/quick/quick_jni_entrypoints.cc", |
| 249 | "entrypoints/quick/quick_lock_entrypoints.cc", |
| 250 | "entrypoints/quick/quick_math_entrypoints.cc", |
| 251 | "entrypoints/quick/quick_thread_entrypoints.cc", |
| 252 | "entrypoints/quick/quick_throw_entrypoints.cc", |
| 253 | "entrypoints/quick/quick_trampoline_entrypoints.cc", |
| 254 | ], |
| 255 | |
| 256 | arch: { |
| 257 | arm: { |
| 258 | clang_asflags: ["-no-integrated-as"], |
| 259 | srcs: [ |
| 260 | "interpreter/mterp/mterp.cc", |
| 261 | "interpreter/mterp/out/mterp_arm.S", |
| 262 | "arch/arm/context_arm.cc", |
| 263 | "arch/arm/entrypoints_init_arm.cc", |
| 264 | "arch/arm/instruction_set_features_assembly_tests.S", |
| 265 | "arch/arm/jni_entrypoints_arm.S", |
| 266 | "arch/arm/memcmp16_arm.S", |
| 267 | "arch/arm/quick_entrypoints_arm.S", |
| 268 | "arch/arm/quick_entrypoints_cc_arm.cc", |
| 269 | "arch/arm/thread_arm.cc", |
| 270 | "arch/arm/fault_handler_arm.cc", |
| 271 | ], |
| 272 | }, |
| 273 | arm64: { |
| 274 | srcs: [ |
| 275 | "interpreter/mterp/mterp.cc", |
| 276 | "interpreter/mterp/out/mterp_arm64.S", |
| 277 | "arch/arm64/context_arm64.cc", |
| 278 | "arch/arm64/entrypoints_init_arm64.cc", |
| 279 | "arch/arm64/jni_entrypoints_arm64.S", |
| 280 | "arch/arm64/memcmp16_arm64.S", |
| 281 | "arch/arm64/quick_entrypoints_arm64.S", |
| 282 | "arch/arm64/thread_arm64.cc", |
| 283 | "monitor_pool.cc", |
| 284 | "arch/arm64/fault_handler_arm64.cc", |
| 285 | ], |
| 286 | }, |
| 287 | x86: { |
| 288 | srcs: [ |
| 289 | "interpreter/mterp/mterp.cc", |
| 290 | "interpreter/mterp/out/mterp_x86.S", |
| 291 | "arch/x86/context_x86.cc", |
| 292 | "arch/x86/entrypoints_init_x86.cc", |
| 293 | "arch/x86/jni_entrypoints_x86.S", |
| 294 | "arch/x86/memcmp16_x86.S", |
| 295 | "arch/x86/quick_entrypoints_x86.S", |
| 296 | "arch/x86/thread_x86.cc", |
| 297 | "arch/x86/fault_handler_x86.cc", |
| 298 | ], |
| 299 | }, |
| 300 | x86_64: { |
| 301 | srcs: [ |
| 302 | // Note that the fault_handler_x86.cc is not a mistake. This file is |
| 303 | // shared between the x86 and x86_64 architectures. |
| 304 | "interpreter/mterp/mterp.cc", |
| 305 | "interpreter/mterp/out/mterp_x86_64.S", |
| 306 | "arch/x86_64/context_x86_64.cc", |
| 307 | "arch/x86_64/entrypoints_init_x86_64.cc", |
| 308 | "arch/x86_64/jni_entrypoints_x86_64.S", |
| 309 | "arch/x86_64/memcmp16_x86_64.S", |
| 310 | "arch/x86_64/quick_entrypoints_x86_64.S", |
| 311 | "arch/x86_64/thread_x86_64.cc", |
| 312 | "monitor_pool.cc", |
| 313 | "arch/x86/fault_handler_x86.cc", |
| 314 | ], |
| 315 | }, |
| 316 | mips: { |
| 317 | srcs: [ |
| 318 | "interpreter/mterp/mterp.cc", |
| 319 | "interpreter/mterp/out/mterp_mips.S", |
| 320 | "arch/mips/context_mips.cc", |
| 321 | "arch/mips/entrypoints_init_mips.cc", |
| 322 | "arch/mips/jni_entrypoints_mips.S", |
| 323 | "arch/mips/memcmp16_mips.S", |
| 324 | "arch/mips/quick_entrypoints_mips.S", |
| 325 | "arch/mips/thread_mips.cc", |
| 326 | "arch/mips/fault_handler_mips.cc", |
| 327 | ], |
| 328 | }, |
| 329 | mips64: { |
| 330 | srcs: [ |
| 331 | "interpreter/mterp/mterp.cc", |
| 332 | "interpreter/mterp/out/mterp_mips64.S", |
| 333 | "arch/mips64/context_mips64.cc", |
| 334 | "arch/mips64/entrypoints_init_mips64.cc", |
| 335 | "arch/mips64/jni_entrypoints_mips64.S", |
| 336 | "arch/mips64/memcmp16_mips64.S", |
| 337 | "arch/mips64/quick_entrypoints_mips64.S", |
| 338 | "arch/mips64/thread_mips64.cc", |
| 339 | "monitor_pool.cc", |
| 340 | "arch/mips64/fault_handler_mips64.cc", |
| 341 | ], |
| 342 | }, |
| 343 | }, |
| 344 | target: { |
| 345 | android: { |
| 346 | srcs: [ |
| 347 | "jdwp/jdwp_adb.cc", |
| 348 | "monitor_android.cc", |
| 349 | "runtime_android.cc", |
| 350 | "thread_android.cc", |
| 351 | ], |
| 352 | shared_libs: [ |
| 353 | "libdl", |
| 354 | // For android::FileMap used by libziparchive. |
| 355 | "libutils", |
Narayan Kamath | eb71033 | 2017-05-10 11:48:46 +0100 | [diff] [blame] | 356 | "libtombstoned_client" |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 357 | ], |
| 358 | static_libs: [ |
| 359 | // ZipArchive support, the order matters here to get all symbols. |
| 360 | "libziparchive", |
| 361 | "libz", |
| 362 | "libbase", |
| 363 | ], |
| 364 | }, |
| 365 | android_arm: { |
| 366 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 367 | }, |
| 368 | android_arm64: { |
| 369 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 370 | }, |
| 371 | android_x86: { |
| 372 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 373 | }, |
| 374 | android_x86_64: { |
| 375 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 376 | }, |
| 377 | host: { |
| 378 | srcs: [ |
| 379 | "monitor_linux.cc", |
| 380 | "runtime_linux.cc", |
| 381 | "thread_linux.cc", |
| 382 | ], |
| 383 | shared_libs: [ |
| 384 | "libziparchive", |
Colin Cross | 19f28f1 | 2016-08-25 16:42:09 -0700 | [diff] [blame] | 385 | "libz-host", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 386 | ], |
| 387 | }, |
| 388 | }, |
| 389 | cflags: ["-DBUILDING_LIBART=1"], |
| 390 | generated_sources: ["art_operator_srcs"], |
Igor Murashkin | 2bb70d3 | 2017-02-06 10:34:14 -0800 | [diff] [blame] | 391 | // asm_support_gen.h (used by asm_support.h) is generated with cpp-define-generator |
| 392 | generated_headers: ["cpp-define-generator-asm-support"], |
| 393 | // export our headers so the libart-gtest targets can use it as well. |
| 394 | export_generated_headers: ["cpp-define-generator-asm-support"], |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 395 | clang: true, |
| 396 | include_dirs: [ |
| 397 | "art/cmdline", |
| 398 | "art/sigchainlib", |
| 399 | "art", |
| 400 | ], |
| 401 | shared_libs: [ |
| 402 | "libnativehelper", |
| 403 | "libnativebridge", |
| 404 | "libnativeloader", |
| 405 | "libbacktrace", |
| 406 | "liblz4", |
Dimitry Ivanov | 1d3038f | 2016-09-23 16:52:05 -0700 | [diff] [blame] | 407 | "liblog", |
| 408 | // For atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted. |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 409 | "libcutils", |
Andreas Gampe | aaadff8 | 2016-08-29 09:53:48 -0700 | [diff] [blame] | 410 | // For common macros. |
| 411 | "libbase", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 412 | ], |
| 413 | static: { |
| 414 | static_libs: ["libsigchain_dummy"], |
| 415 | }, |
| 416 | shared: { |
| 417 | shared_libs: ["libsigchain"], |
| 418 | }, |
| 419 | export_include_dirs: ["."], |
Andreas Gampe | aaadff8 | 2016-08-29 09:53:48 -0700 | [diff] [blame] | 420 | // ART's macros.h depends on libbase's macros.h. |
| 421 | export_shared_lib_headers: ["libbase"], |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | gensrcs { |
| 425 | name: "art_operator_srcs", |
Colin Cross | f657ed0 | 2016-11-04 15:31:17 -0700 | [diff] [blame] | 426 | cmd: "$(location generate-operator-out.py) art/runtime $(in) > $(out)", |
| 427 | tool_files: ["generate-operator-out.py"], |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 428 | srcs: [ |
| 429 | "arch/instruction_set.h", |
| 430 | "base/allocator.h", |
Andreas Gampe | 8228cdf | 2017-05-30 15:03:54 -0700 | [diff] [blame] | 431 | "base/callee_save_type.h", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 432 | "base/enums.h", |
| 433 | "base/mutex.h", |
| 434 | "debugger.h", |
| 435 | "base/unix_file/fd_file.h", |
| 436 | "dex_file.h", |
| 437 | "dex_instruction.h", |
| 438 | "dex_instruction_utils.h", |
| 439 | "gc_root.h", |
| 440 | "gc/allocator_type.h", |
| 441 | "gc/allocator/rosalloc.h", |
| 442 | "gc/collector_type.h", |
| 443 | "gc/collector/gc_type.h", |
| 444 | "gc/heap.h", |
| 445 | "gc/space/region_space.h", |
| 446 | "gc/space/space.h", |
| 447 | "gc/weak_root_state.h", |
| 448 | "image.h", |
| 449 | "instrumentation.h", |
| 450 | "indirect_reference_table.h", |
| 451 | "invoke_type.h", |
| 452 | "jdwp/jdwp.h", |
| 453 | "jdwp/jdwp_constants.h", |
| 454 | "lock_word.h", |
| 455 | "mirror/class.h", |
| 456 | "oat.h", |
| 457 | "object_callbacks.h", |
| 458 | "process_state.h", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 459 | "stack.h", |
| 460 | "thread.h", |
| 461 | "thread_state.h", |
| 462 | "ti/agent.h", |
Andreas Gampe | 6d7abbd | 2017-04-24 13:19:09 -0700 | [diff] [blame] | 463 | "verifier/verifier_enums.h", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 464 | ], |
| 465 | output_extension: "operator_out.cc", |
| 466 | } |
| 467 | |
| 468 | // We always build dex2oat and dependencies, even if the host build is otherwise disabled, since |
| 469 | // they are used to cross compile for the target. |
| 470 | |
| 471 | art_cc_library { |
| 472 | name: "libart", |
| 473 | defaults: ["libart_defaults"], |
Andreas Gampe | 20ada11 | 2016-08-29 08:51:15 -0700 | [diff] [blame] | 474 | // Leave the symbols in the shared library so that stack unwinders can |
| 475 | // produce meaningful name resolution. |
| 476 | strip: { |
| 477 | keep_symbols: true, |
| 478 | }, |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | art_cc_library { |
| 482 | name: "libartd", |
| 483 | defaults: [ |
Colin Cross | c564406 | 2016-08-30 15:41:08 -0700 | [diff] [blame] | 484 | "art_debug_defaults", |
| 485 | "libart_defaults", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 486 | ], |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 487 | } |
| 488 | |
Colin Cross | 6b22aa5 | 2016-09-12 14:35:39 -0700 | [diff] [blame] | 489 | art_cc_library { |
| 490 | name: "libart-runtime-gtest", |
| 491 | defaults: ["libart-gtest-defaults"], |
Calin Juravle | 36eb313 | 2017-01-13 16:32:38 -0800 | [diff] [blame] | 492 | srcs: [ |
| 493 | "common_runtime_test.cc", |
| 494 | "dexopt_test.cc" |
| 495 | ], |
Colin Cross | 6b22aa5 | 2016-09-12 14:35:39 -0700 | [diff] [blame] | 496 | shared_libs: [ |
| 497 | "libartd", |
Andreas Gampe | 3fec9ac | 2016-09-13 10:47:28 -0700 | [diff] [blame] | 498 | "libbase", |
Calin Juravle | 36eb313 | 2017-01-13 16:32:38 -0800 | [diff] [blame] | 499 | "libbacktrace" |
Colin Cross | 6b22aa5 | 2016-09-12 14:35:39 -0700 | [diff] [blame] | 500 | ], |
| 501 | } |
| 502 | |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 503 | art_cc_test { |
| 504 | name: "art_runtime_tests", |
| 505 | defaults: [ |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 506 | "art_gtest_defaults", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 507 | ], |
| 508 | srcs: [ |
| 509 | "arch/arch_test.cc", |
| 510 | "arch/instruction_set_test.cc", |
| 511 | "arch/instruction_set_features_test.cc", |
| 512 | "arch/memcmp16_test.cc", |
| 513 | "arch/stub_test.cc", |
| 514 | "arch/arm/instruction_set_features_arm_test.cc", |
| 515 | "arch/arm64/instruction_set_features_arm64_test.cc", |
| 516 | "arch/mips/instruction_set_features_mips_test.cc", |
| 517 | "arch/mips64/instruction_set_features_mips64_test.cc", |
| 518 | "arch/x86/instruction_set_features_x86_test.cc", |
| 519 | "arch/x86_64/instruction_set_features_x86_64_test.cc", |
| 520 | "barrier_test.cc", |
| 521 | "base/arena_allocator_test.cc", |
| 522 | "base/bit_field_test.cc", |
| 523 | "base/bit_utils_test.cc", |
| 524 | "base/bit_vector_test.cc", |
| 525 | "base/hash_set_test.cc", |
| 526 | "base/hex_dump_test.cc", |
| 527 | "base/histogram_test.cc", |
| 528 | "base/mutex_test.cc", |
Josh Gao | 682282e | 2017-04-17 18:31:26 -0700 | [diff] [blame] | 529 | "base/safe_copy_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 530 | "base/scoped_flock_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 531 | "base/time_utils_test.cc", |
| 532 | "base/timing_logger_test.cc", |
| 533 | "base/transform_array_ref_test.cc", |
| 534 | "base/transform_iterator_test.cc", |
| 535 | "base/variant_map_test.cc", |
| 536 | "base/unix_file/fd_file_test.cc", |
Mingyao Yang | 063fc77 | 2016-08-02 11:02:54 -0700 | [diff] [blame] | 537 | "cha_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 538 | "class_linker_test.cc", |
Mathieu Chartier | db70ce5 | 2016-12-12 11:06:59 -0800 | [diff] [blame] | 539 | "class_table_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 540 | "compiler_filter_test.cc", |
| 541 | "dex_file_test.cc", |
| 542 | "dex_file_verifier_test.cc", |
| 543 | "dex_instruction_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 544 | "dex_method_iterator_test.cc", |
| 545 | "entrypoints/math_entrypoints_test.cc", |
| 546 | "entrypoints/quick/quick_trampoline_entrypoints_test.cc", |
| 547 | "entrypoints_order_test.cc", |
| 548 | "gc/accounting/card_table_test.cc", |
| 549 | "gc/accounting/mod_union_table_test.cc", |
| 550 | "gc/accounting/space_bitmap_test.cc", |
| 551 | "gc/collector/immune_spaces_test.cc", |
| 552 | "gc/heap_test.cc", |
Mathieu Chartier | 1ca6890 | 2017-04-18 11:26:22 -0700 | [diff] [blame] | 553 | "gc/heap_verification_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 554 | "gc/reference_queue_test.cc", |
| 555 | "gc/space/dlmalloc_space_static_test.cc", |
| 556 | "gc/space/dlmalloc_space_random_test.cc", |
Richard Uhler | 84f50ae | 2017-02-06 15:12:45 +0000 | [diff] [blame] | 557 | "gc/space/image_space_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 558 | "gc/space/large_object_space_test.cc", |
| 559 | "gc/space/rosalloc_space_static_test.cc", |
| 560 | "gc/space/rosalloc_space_random_test.cc", |
| 561 | "gc/space/space_create_test.cc", |
| 562 | "gc/system_weak_test.cc", |
| 563 | "gc/task_processor_test.cc", |
| 564 | "gtest_test.cc", |
| 565 | "handle_scope_test.cc", |
Andreas Gampe | a1ff30f | 2016-09-27 12:19:45 -0700 | [diff] [blame] | 566 | "imtable_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 567 | "indenter_test.cc", |
| 568 | "indirect_reference_table_test.cc", |
| 569 | "instrumentation_test.cc", |
| 570 | "intern_table_test.cc", |
| 571 | "interpreter/safe_math_test.cc", |
| 572 | "interpreter/unstarted_runtime_test.cc", |
| 573 | "java_vm_ext_test.cc", |
| 574 | "jit/profile_compilation_info_test.cc", |
| 575 | "leb128_test.cc", |
| 576 | "mem_map_test.cc", |
| 577 | "memory_region_test.cc", |
| 578 | "mirror/dex_cache_test.cc", |
Narayan Kamath | afa4827 | 2016-08-03 12:46:58 +0100 | [diff] [blame] | 579 | "mirror/method_type_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 580 | "mirror/object_test.cc", |
| 581 | "monitor_pool_test.cc", |
| 582 | "monitor_test.cc", |
| 583 | "oat_file_test.cc", |
| 584 | "oat_file_assistant_test.cc", |
| 585 | "parsed_options_test.cc", |
| 586 | "prebuilt_tools_test.cc", |
| 587 | "reference_table_test.cc", |
Andreas Gampe | 04bbb5b | 2017-01-19 17:49:03 +0000 | [diff] [blame] | 588 | "runtime_callbacks_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 589 | "thread_pool_test.cc", |
| 590 | "transaction_test.cc", |
| 591 | "type_lookup_table_test.cc", |
| 592 | "utf_test.cc", |
| 593 | "utils_test.cc", |
Richard Uhler | b8ab63a | 2017-01-31 11:27:37 +0000 | [diff] [blame] | 594 | "vdex_file_test.cc", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 595 | "verifier/method_verifier_test.cc", |
| 596 | "verifier/reg_type_test.cc", |
| 597 | "zip_archive_test.cc", |
| 598 | ], |
| 599 | shared_libs: [ |
| 600 | "libbacktrace", |
| 601 | ], |
| 602 | } |
| 603 | |
| 604 | art_cc_test { |
| 605 | name: "art_runtime_compiler_tests", |
| 606 | defaults: [ |
Colin Cross | afd3c9e | 2016-09-16 13:47:21 -0700 | [diff] [blame] | 607 | "art_gtest_defaults", |
Colin Cross | 6e95dd5 | 2016-09-12 15:37:10 -0700 | [diff] [blame] | 608 | ], |
| 609 | srcs: [ |
| 610 | "jni_internal_test.cc", |
| 611 | "proxy_test.cc", |
| 612 | "reflection_test.cc", |
| 613 | ], |
| 614 | shared_libs: [ |
| 615 | "libartd-compiler", |
| 616 | "libvixld-arm", |
| 617 | "libvixld-arm64", |
| 618 | ], |
| 619 | } |
| 620 | |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 621 | subdirs = [ |
| 622 | "openjdkjvm", |
| 623 | "openjdkjvmti", |
| 624 | "simulator", |
| 625 | ] |