| 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 2498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2509 } else { | 2509 } else { |
| 2510 group("v8") { | 2510 group("v8") { |
| 2511 deps = [ | 2511 deps = [ |
| 2512 ":v8_dump_build_config", | 2512 ":v8_dump_build_config", |
| 2513 ] | 2513 ] |
| 2514 | 2514 |
| 2515 public_deps = [ | 2515 public_deps = [ |
| 2516 ":v8_base", | 2516 ":v8_base", |
| 2517 ":v8_maybe_snapshot", | 2517 ":v8_maybe_snapshot", |
| 2518 ] | 2518 ] |
| 2519 |
| 2519 public_configs = [ ":external_config" ] | 2520 public_configs = [ ":external_config" ] |
| 2520 } | 2521 } |
| 2521 } | 2522 } |
| 2522 | 2523 |
| 2523 v8_executable("d8") { | 2524 v8_executable("d8") { |
| 2524 sources = [ | 2525 sources = [ |
| 2525 "$target_gen_dir/d8-js.cc", | 2526 "$target_gen_dir/d8-js.cc", |
| 2526 "src/d8.cc", | 2527 "src/d8.cc", |
| 2527 "src/d8.h", | 2528 "src/d8.h", |
| 2528 ] | 2529 ] |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2983 ] | 2984 ] |
| 2984 | 2985 |
| 2985 configs = [ | 2986 configs = [ |
| 2986 ":external_config", | 2987 ":external_config", |
| 2987 ":internal_config_base", | 2988 ":internal_config_base", |
| 2988 ] | 2989 ] |
| 2989 } | 2990 } |
| 2990 | 2991 |
| 2991 v8_fuzzer("wasm_data_section_fuzzer") { | 2992 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2992 } | 2993 } |
| OLD | NEW |