OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
10 | 10 |
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 ] | 508 ] |
509 | 509 |
510 outputs = [ | 510 outputs = [ |
511 "$target_gen_dir/d8-js.cc", | 511 "$target_gen_dir/d8-js.cc", |
512 ] | 512 ] |
513 | 513 |
514 args = rebase_path(outputs, root_build_dir) + [ "D8" ] + | 514 args = rebase_path(outputs, root_build_dir) + [ "D8" ] + |
515 rebase_path(inputs, root_build_dir) | 515 rebase_path(inputs, root_build_dir) |
516 } | 516 } |
517 | 517 |
518 if (is_android) { | 518 if (is_android && enable_java_templates) { |
519 android_assets("v8_external_startup_data_assets") { | 519 android_assets("v8_external_startup_data_assets") { |
520 if (v8_use_external_startup_data) { | 520 if (v8_use_external_startup_data) { |
521 deps = [ | 521 deps = [ |
522 "//v8", | 522 "//v8", |
523 ] | 523 ] |
524 sources = [ | 524 sources = [ |
525 "$root_out_dir/natives_blob.bin", | 525 "$root_out_dir/natives_blob.bin", |
526 ] | 526 ] |
527 renaming_sources = [ "$root_out_dir/snapshot_blob.bin" ] | 527 renaming_sources = [ "$root_out_dir/snapshot_blob.bin" ] |
528 if (current_cpu == "arm" || current_cpu == "x86" || | 528 if (current_cpu == "arm" || current_cpu == "x86" || |
(...skipping 1867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2396 | 2396 |
2397 deps = [ | 2397 deps = [ |
2398 ":fuzzer_support", | 2398 ":fuzzer_support", |
2399 ] | 2399 ] |
2400 | 2400 |
2401 configs = [ ":internal_config" ] | 2401 configs = [ ":internal_config" ] |
2402 } | 2402 } |
2403 | 2403 |
2404 v8_fuzzer("wasm_asmjs_fuzzer") { | 2404 v8_fuzzer("wasm_asmjs_fuzzer") { |
2405 } | 2405 } |
OLD | NEW |