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 2703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2714 ":v8_maybe_snapshot", | 2714 ":v8_maybe_snapshot", |
2715 ] | 2715 ] |
2716 | 2716 |
2717 public_configs = [ ":external_config" ] | 2717 public_configs = [ ":external_config" ] |
2718 } | 2718 } |
2719 } | 2719 } |
2720 | 2720 |
2721 v8_executable("d8") { | 2721 v8_executable("d8") { |
2722 sources = [ | 2722 sources = [ |
2723 "$target_gen_dir/d8-js.cc", | 2723 "$target_gen_dir/d8-js.cc", |
| 2724 "src/d8-console.cc", |
| 2725 "src/d8-console.h", |
2724 "src/d8.cc", | 2726 "src/d8.cc", |
2725 "src/d8.h", | 2727 "src/d8.h", |
2726 ] | 2728 ] |
2727 | 2729 |
2728 configs = [ | 2730 configs = [ |
2729 # Note: don't use :internal_config here because this target will get | 2731 # Note: don't use :internal_config here because this target will get |
2730 # the :external_config applied to it by virtue of depending on :v8, and | 2732 # the :external_config applied to it by virtue of depending on :v8, and |
2731 # you can't have both applied to the same target. | 2733 # you can't have both applied to the same target. |
2732 ":internal_config_base", | 2734 ":internal_config_base", |
2733 ] | 2735 ] |
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3197 ] | 3199 ] |
3198 | 3200 |
3199 configs = [ | 3201 configs = [ |
3200 ":external_config", | 3202 ":external_config", |
3201 ":internal_config_base", | 3203 ":internal_config_base", |
3202 ] | 3204 ] |
3203 } | 3205 } |
3204 | 3206 |
3205 v8_fuzzer("wasm_compile_fuzzer") { | 3207 v8_fuzzer("wasm_compile_fuzzer") { |
3206 } | 3208 } |
OLD | NEW |