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", |
| 40 | "base/scoped_arena_allocator.cc", |
| 41 | "base/scoped_flock.cc", |
| 42 | "base/stringpiece.cc", |
| 43 | "base/stringprintf.cc", |
| 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", |
| 48 | "check_jni.cc", |
| 49 | "class_linker.cc", |
| 50 | "class_table.cc", |
| 51 | "code_simulator_container.cc", |
| 52 | "common_throws.cc", |
| 53 | "compiler_filter.cc", |
| 54 | "debugger.cc", |
| 55 | "dex_file.cc", |
David Sehr | 9323e6e | 2016-09-13 08:58:35 -0700 | [diff] [blame^] | 56 | "dex_file_annotations.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 57 | "dex_file_verifier.cc", |
| 58 | "dex_instruction.cc", |
| 59 | "elf_file.cc", |
| 60 | "fault_handler.cc", |
| 61 | "gc/allocation_record.cc", |
| 62 | "gc/allocator/dlmalloc.cc", |
| 63 | "gc/allocator/rosalloc.cc", |
| 64 | "gc/accounting/bitmap.cc", |
| 65 | "gc/accounting/card_table.cc", |
| 66 | "gc/accounting/heap_bitmap.cc", |
| 67 | "gc/accounting/mod_union_table.cc", |
| 68 | "gc/accounting/remembered_set.cc", |
| 69 | "gc/accounting/space_bitmap.cc", |
| 70 | "gc/collector/concurrent_copying.cc", |
| 71 | "gc/collector/garbage_collector.cc", |
| 72 | "gc/collector/immune_region.cc", |
| 73 | "gc/collector/immune_spaces.cc", |
| 74 | "gc/collector/mark_compact.cc", |
| 75 | "gc/collector/mark_sweep.cc", |
| 76 | "gc/collector/partial_mark_sweep.cc", |
| 77 | "gc/collector/semi_space.cc", |
| 78 | "gc/collector/sticky_mark_sweep.cc", |
| 79 | "gc/gc_cause.cc", |
| 80 | "gc/heap.cc", |
| 81 | "gc/reference_processor.cc", |
| 82 | "gc/reference_queue.cc", |
| 83 | "gc/scoped_gc_critical_section.cc", |
| 84 | "gc/space/bump_pointer_space.cc", |
| 85 | "gc/space/dlmalloc_space.cc", |
| 86 | "gc/space/image_space.cc", |
| 87 | "gc/space/large_object_space.cc", |
| 88 | "gc/space/malloc_space.cc", |
| 89 | "gc/space/region_space.cc", |
| 90 | "gc/space/rosalloc_space.cc", |
| 91 | "gc/space/space.cc", |
| 92 | "gc/space/zygote_space.cc", |
| 93 | "gc/task_processor.cc", |
| 94 | "hprof/hprof.cc", |
| 95 | "image.cc", |
| 96 | "indirect_reference_table.cc", |
| 97 | "instrumentation.cc", |
| 98 | "intern_table.cc", |
| 99 | "interpreter/interpreter.cc", |
| 100 | "interpreter/interpreter_common.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 101 | "interpreter/interpreter_switch_impl.cc", |
| 102 | "interpreter/unstarted_runtime.cc", |
| 103 | "java_vm_ext.cc", |
| 104 | "jdwp/jdwp_event.cc", |
| 105 | "jdwp/jdwp_expand_buf.cc", |
| 106 | "jdwp/jdwp_handler.cc", |
| 107 | "jdwp/jdwp_main.cc", |
| 108 | "jdwp/jdwp_request.cc", |
| 109 | "jdwp/jdwp_socket.cc", |
| 110 | "jdwp/object_registry.cc", |
| 111 | "jni_env_ext.cc", |
| 112 | "jit/debugger_interface.cc", |
| 113 | "jit/jit.cc", |
| 114 | "jit/jit_code_cache.cc", |
| 115 | "jit/offline_profiling_info.cc", |
| 116 | "jit/profiling_info.cc", |
| 117 | "jit/profile_saver.cc", |
| 118 | "jni_internal.cc", |
| 119 | "jobject_comparator.cc", |
| 120 | "linear_alloc.cc", |
| 121 | "mem_map.cc", |
| 122 | "memory_region.cc", |
| 123 | "mirror/abstract_method.cc", |
| 124 | "mirror/array.cc", |
| 125 | "mirror/class.cc", |
| 126 | "mirror/dex_cache.cc", |
| 127 | "mirror/field.cc", |
| 128 | "mirror/method.cc", |
| 129 | "mirror/object.cc", |
| 130 | "mirror/reference.cc", |
| 131 | "mirror/stack_trace_element.cc", |
| 132 | "mirror/string.cc", |
| 133 | "mirror/throwable.cc", |
| 134 | "monitor.cc", |
| 135 | "native_bridge_art_interface.cc", |
| 136 | "native_stack_dump.cc", |
| 137 | "native/dalvik_system_DexFile.cc", |
Orion Hodson | a4c2a05 | 2016-08-17 10:51:42 +0100 | [diff] [blame] | 138 | "native/dalvik_system_InMemoryDexClassLoader_DexData.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 139 | "native/dalvik_system_VMDebug.cc", |
| 140 | "native/dalvik_system_VMRuntime.cc", |
| 141 | "native/dalvik_system_VMStack.cc", |
| 142 | "native/dalvik_system_ZygoteHooks.cc", |
| 143 | "native/java_lang_Class.cc", |
| 144 | "native/java_lang_DexCache.cc", |
| 145 | "native/java_lang_Object.cc", |
| 146 | "native/java_lang_String.cc", |
| 147 | "native/java_lang_StringFactory.cc", |
| 148 | "native/java_lang_System.cc", |
| 149 | "native/java_lang_Thread.cc", |
| 150 | "native/java_lang_Throwable.cc", |
| 151 | "native/java_lang_VMClassLoader.cc", |
| 152 | "native/java_lang_ref_FinalizerReference.cc", |
| 153 | "native/java_lang_ref_Reference.cc", |
| 154 | "native/java_lang_reflect_AbstractMethod.cc", |
| 155 | "native/java_lang_reflect_Array.cc", |
| 156 | "native/java_lang_reflect_Constructor.cc", |
| 157 | "native/java_lang_reflect_Field.cc", |
| 158 | "native/java_lang_reflect_Method.cc", |
Neil Fuller | 60458a0 | 2016-09-01 15:32:44 +0100 | [diff] [blame] | 159 | "native/java_lang_reflect_Parameter.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 160 | "native/java_lang_reflect_Proxy.cc", |
| 161 | "native/java_util_concurrent_atomic_AtomicLong.cc", |
| 162 | "native/libcore_util_CharsetUtils.cc", |
| 163 | "native/org_apache_harmony_dalvik_ddmc_DdmServer.cc", |
| 164 | "native/org_apache_harmony_dalvik_ddmc_DdmVmInternal.cc", |
| 165 | "native/sun_misc_Unsafe.cc", |
| 166 | "oat.cc", |
| 167 | "oat_file.cc", |
| 168 | "oat_file_assistant.cc", |
| 169 | "oat_file_manager.cc", |
| 170 | "oat_quick_method_header.cc", |
| 171 | "object_lock.cc", |
| 172 | "offsets.cc", |
| 173 | "os_linux.cc", |
| 174 | "parsed_options.cc", |
| 175 | "plugin.cc", |
| 176 | "primitive.cc", |
| 177 | "quick_exception_handler.cc", |
| 178 | "quick/inline_method_analyser.cc", |
| 179 | "reference_table.cc", |
| 180 | "reflection.cc", |
| 181 | "runtime.cc", |
| 182 | "runtime_options.cc", |
| 183 | "signal_catcher.cc", |
| 184 | "stack.cc", |
| 185 | "stack_map.cc", |
| 186 | "thread.cc", |
| 187 | "thread_list.cc", |
| 188 | "thread_pool.cc", |
| 189 | "ti/agent.cc", |
| 190 | "trace.cc", |
| 191 | "transaction.cc", |
| 192 | "type_lookup_table.cc", |
| 193 | "utf.cc", |
| 194 | "utils.cc", |
David Brazdil | 7b49e6c | 2016-09-01 11:06:18 +0100 | [diff] [blame] | 195 | "vdex_file.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 196 | "verifier/instruction_flags.cc", |
| 197 | "verifier/method_verifier.cc", |
| 198 | "verifier/reg_type.cc", |
| 199 | "verifier/reg_type_cache.cc", |
| 200 | "verifier/register_line.cc", |
| 201 | "well_known_classes.cc", |
| 202 | "zip_archive.cc", |
| 203 | |
| 204 | "arch/context.cc", |
| 205 | "arch/instruction_set.cc", |
| 206 | "arch/instruction_set_features.cc", |
| 207 | "arch/memcmp16.cc", |
| 208 | "arch/arm/instruction_set_features_arm.cc", |
| 209 | "arch/arm/registers_arm.cc", |
| 210 | "arch/arm64/instruction_set_features_arm64.cc", |
| 211 | "arch/arm64/registers_arm64.cc", |
| 212 | "arch/mips/instruction_set_features_mips.cc", |
| 213 | "arch/mips/registers_mips.cc", |
| 214 | "arch/mips64/instruction_set_features_mips64.cc", |
| 215 | "arch/mips64/registers_mips64.cc", |
| 216 | "arch/x86/instruction_set_features_x86.cc", |
| 217 | "arch/x86/registers_x86.cc", |
| 218 | "arch/x86_64/registers_x86_64.cc", |
| 219 | "entrypoints/entrypoint_utils.cc", |
| 220 | "entrypoints/jni/jni_entrypoints.cc", |
| 221 | "entrypoints/math_entrypoints.cc", |
| 222 | "entrypoints/quick/quick_alloc_entrypoints.cc", |
| 223 | "entrypoints/quick/quick_cast_entrypoints.cc", |
| 224 | "entrypoints/quick/quick_deoptimization_entrypoints.cc", |
| 225 | "entrypoints/quick/quick_dexcache_entrypoints.cc", |
Serban Constantinescu | da8ffec | 2016-03-09 12:02:11 +0000 | [diff] [blame] | 226 | "entrypoints/quick/quick_entrypoints_enum.cc", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 227 | "entrypoints/quick/quick_field_entrypoints.cc", |
| 228 | "entrypoints/quick/quick_fillarray_entrypoints.cc", |
| 229 | "entrypoints/quick/quick_instrumentation_entrypoints.cc", |
| 230 | "entrypoints/quick/quick_jni_entrypoints.cc", |
| 231 | "entrypoints/quick/quick_lock_entrypoints.cc", |
| 232 | "entrypoints/quick/quick_math_entrypoints.cc", |
| 233 | "entrypoints/quick/quick_thread_entrypoints.cc", |
| 234 | "entrypoints/quick/quick_throw_entrypoints.cc", |
| 235 | "entrypoints/quick/quick_trampoline_entrypoints.cc", |
| 236 | ], |
| 237 | |
| 238 | arch: { |
| 239 | arm: { |
| 240 | clang_asflags: ["-no-integrated-as"], |
| 241 | srcs: [ |
| 242 | "interpreter/mterp/mterp.cc", |
| 243 | "interpreter/mterp/out/mterp_arm.S", |
| 244 | "arch/arm/context_arm.cc", |
| 245 | "arch/arm/entrypoints_init_arm.cc", |
| 246 | "arch/arm/instruction_set_features_assembly_tests.S", |
| 247 | "arch/arm/jni_entrypoints_arm.S", |
| 248 | "arch/arm/memcmp16_arm.S", |
| 249 | "arch/arm/quick_entrypoints_arm.S", |
| 250 | "arch/arm/quick_entrypoints_cc_arm.cc", |
| 251 | "arch/arm/thread_arm.cc", |
| 252 | "arch/arm/fault_handler_arm.cc", |
| 253 | ], |
| 254 | }, |
| 255 | arm64: { |
| 256 | srcs: [ |
| 257 | "interpreter/mterp/mterp.cc", |
| 258 | "interpreter/mterp/out/mterp_arm64.S", |
| 259 | "arch/arm64/context_arm64.cc", |
| 260 | "arch/arm64/entrypoints_init_arm64.cc", |
| 261 | "arch/arm64/jni_entrypoints_arm64.S", |
| 262 | "arch/arm64/memcmp16_arm64.S", |
| 263 | "arch/arm64/quick_entrypoints_arm64.S", |
| 264 | "arch/arm64/thread_arm64.cc", |
| 265 | "monitor_pool.cc", |
| 266 | "arch/arm64/fault_handler_arm64.cc", |
| 267 | ], |
| 268 | }, |
| 269 | x86: { |
| 270 | srcs: [ |
| 271 | "interpreter/mterp/mterp.cc", |
| 272 | "interpreter/mterp/out/mterp_x86.S", |
| 273 | "arch/x86/context_x86.cc", |
| 274 | "arch/x86/entrypoints_init_x86.cc", |
| 275 | "arch/x86/jni_entrypoints_x86.S", |
| 276 | "arch/x86/memcmp16_x86.S", |
| 277 | "arch/x86/quick_entrypoints_x86.S", |
| 278 | "arch/x86/thread_x86.cc", |
| 279 | "arch/x86/fault_handler_x86.cc", |
| 280 | ], |
| 281 | }, |
| 282 | x86_64: { |
| 283 | srcs: [ |
| 284 | // Note that the fault_handler_x86.cc is not a mistake. This file is |
| 285 | // shared between the x86 and x86_64 architectures. |
| 286 | "interpreter/mterp/mterp.cc", |
| 287 | "interpreter/mterp/out/mterp_x86_64.S", |
| 288 | "arch/x86_64/context_x86_64.cc", |
| 289 | "arch/x86_64/entrypoints_init_x86_64.cc", |
| 290 | "arch/x86_64/jni_entrypoints_x86_64.S", |
| 291 | "arch/x86_64/memcmp16_x86_64.S", |
| 292 | "arch/x86_64/quick_entrypoints_x86_64.S", |
| 293 | "arch/x86_64/thread_x86_64.cc", |
| 294 | "monitor_pool.cc", |
| 295 | "arch/x86/fault_handler_x86.cc", |
| 296 | ], |
| 297 | }, |
| 298 | mips: { |
| 299 | srcs: [ |
| 300 | "interpreter/mterp/mterp.cc", |
| 301 | "interpreter/mterp/out/mterp_mips.S", |
| 302 | "arch/mips/context_mips.cc", |
| 303 | "arch/mips/entrypoints_init_mips.cc", |
| 304 | "arch/mips/jni_entrypoints_mips.S", |
| 305 | "arch/mips/memcmp16_mips.S", |
| 306 | "arch/mips/quick_entrypoints_mips.S", |
| 307 | "arch/mips/thread_mips.cc", |
| 308 | "arch/mips/fault_handler_mips.cc", |
| 309 | ], |
| 310 | }, |
| 311 | mips64: { |
| 312 | srcs: [ |
| 313 | "interpreter/mterp/mterp.cc", |
| 314 | "interpreter/mterp/out/mterp_mips64.S", |
| 315 | "arch/mips64/context_mips64.cc", |
| 316 | "arch/mips64/entrypoints_init_mips64.cc", |
| 317 | "arch/mips64/jni_entrypoints_mips64.S", |
| 318 | "arch/mips64/memcmp16_mips64.S", |
| 319 | "arch/mips64/quick_entrypoints_mips64.S", |
| 320 | "arch/mips64/thread_mips64.cc", |
| 321 | "monitor_pool.cc", |
| 322 | "arch/mips64/fault_handler_mips64.cc", |
| 323 | ], |
| 324 | }, |
| 325 | }, |
| 326 | target: { |
| 327 | android: { |
| 328 | srcs: [ |
| 329 | "jdwp/jdwp_adb.cc", |
| 330 | "monitor_android.cc", |
| 331 | "runtime_android.cc", |
| 332 | "thread_android.cc", |
| 333 | ], |
| 334 | shared_libs: [ |
| 335 | "libdl", |
| 336 | // For android::FileMap used by libziparchive. |
| 337 | "libutils", |
| 338 | ], |
| 339 | static_libs: [ |
| 340 | // ZipArchive support, the order matters here to get all symbols. |
| 341 | "libziparchive", |
| 342 | "libz", |
| 343 | "libbase", |
| 344 | ], |
| 345 | }, |
| 346 | android_arm: { |
| 347 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 348 | }, |
| 349 | android_arm64: { |
| 350 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 351 | }, |
| 352 | android_x86: { |
| 353 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 354 | }, |
| 355 | android_x86_64: { |
| 356 | ldflags: JIT_DEBUG_REGISTER_CODE_LDFLAGS, |
| 357 | }, |
| 358 | host: { |
| 359 | srcs: [ |
| 360 | "monitor_linux.cc", |
| 361 | "runtime_linux.cc", |
| 362 | "thread_linux.cc", |
| 363 | ], |
| 364 | shared_libs: [ |
| 365 | "libziparchive", |
Colin Cross | 19f28f1 | 2016-08-25 16:42:09 -0700 | [diff] [blame] | 366 | "libz-host", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 367 | ], |
| 368 | }, |
| 369 | }, |
| 370 | cflags: ["-DBUILDING_LIBART=1"], |
| 371 | generated_sources: ["art_operator_srcs"], |
| 372 | clang: true, |
| 373 | include_dirs: [ |
| 374 | "art/cmdline", |
| 375 | "art/sigchainlib", |
| 376 | "art", |
| 377 | ], |
| 378 | shared_libs: [ |
| 379 | "libnativehelper", |
| 380 | "libnativebridge", |
| 381 | "libnativeloader", |
| 382 | "libbacktrace", |
| 383 | "liblz4", |
| 384 | // For liblog, atrace, properties, ashmem, set_sched_policy and socket_peer_is_trusted. |
| 385 | "libcutils", |
Andreas Gampe | aaadff8 | 2016-08-29 09:53:48 -0700 | [diff] [blame] | 386 | // For common macros. |
| 387 | "libbase", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 388 | ], |
| 389 | static: { |
| 390 | static_libs: ["libsigchain_dummy"], |
| 391 | }, |
| 392 | shared: { |
| 393 | shared_libs: ["libsigchain"], |
| 394 | }, |
| 395 | export_include_dirs: ["."], |
Andreas Gampe | aaadff8 | 2016-08-29 09:53:48 -0700 | [diff] [blame] | 396 | // ART's macros.h depends on libbase's macros.h. |
| 397 | export_shared_lib_headers: ["libbase"], |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 398 | } |
| 399 | |
| 400 | gensrcs { |
| 401 | name: "art_operator_srcs", |
| 402 | cmd: "art/tools/generate-operator-out.py art/runtime $in > $out", |
| 403 | srcs: [ |
| 404 | "arch/instruction_set.h", |
| 405 | "base/allocator.h", |
| 406 | "base/enums.h", |
| 407 | "base/mutex.h", |
| 408 | "debugger.h", |
| 409 | "base/unix_file/fd_file.h", |
| 410 | "dex_file.h", |
| 411 | "dex_instruction.h", |
| 412 | "dex_instruction_utils.h", |
| 413 | "gc_root.h", |
| 414 | "gc/allocator_type.h", |
| 415 | "gc/allocator/rosalloc.h", |
| 416 | "gc/collector_type.h", |
| 417 | "gc/collector/gc_type.h", |
| 418 | "gc/heap.h", |
| 419 | "gc/space/region_space.h", |
| 420 | "gc/space/space.h", |
| 421 | "gc/weak_root_state.h", |
| 422 | "image.h", |
| 423 | "instrumentation.h", |
| 424 | "indirect_reference_table.h", |
| 425 | "invoke_type.h", |
| 426 | "jdwp/jdwp.h", |
| 427 | "jdwp/jdwp_constants.h", |
| 428 | "lock_word.h", |
| 429 | "mirror/class.h", |
| 430 | "oat.h", |
| 431 | "object_callbacks.h", |
| 432 | "process_state.h", |
| 433 | "quick/inline_method_analyser.h", |
| 434 | "runtime.h", |
| 435 | "stack.h", |
| 436 | "thread.h", |
| 437 | "thread_state.h", |
| 438 | "ti/agent.h", |
| 439 | "verifier/method_verifier.h", |
| 440 | ], |
| 441 | output_extension: "operator_out.cc", |
| 442 | } |
| 443 | |
| 444 | // We always build dex2oat and dependencies, even if the host build is otherwise disabled, since |
| 445 | // they are used to cross compile for the target. |
| 446 | |
| 447 | art_cc_library { |
| 448 | name: "libart", |
| 449 | defaults: ["libart_defaults"], |
Andreas Gampe | 20ada11 | 2016-08-29 08:51:15 -0700 | [diff] [blame] | 450 | // Leave the symbols in the shared library so that stack unwinders can |
| 451 | // produce meaningful name resolution. |
| 452 | strip: { |
| 453 | keep_symbols: true, |
| 454 | }, |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | art_cc_library { |
| 458 | name: "libartd", |
| 459 | defaults: [ |
Colin Cross | c564406 | 2016-08-30 15:41:08 -0700 | [diff] [blame] | 460 | "art_debug_defaults", |
| 461 | "libart_defaults", |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 462 | ], |
Colin Cross | 1f7f3bd | 2016-07-27 10:12:38 -0700 | [diff] [blame] | 463 | } |
| 464 | |
| 465 | subdirs = [ |
| 466 | "openjdkjvm", |
| 467 | "openjdkjvmti", |
| 468 | "simulator", |
| 469 | ] |