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