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 2542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2553 | 2553 |
2554 if (is_posix) { | 2554 if (is_posix) { |
2555 sources += [ "src/d8-posix.cc" ] | 2555 sources += [ "src/d8-posix.cc" ] |
2556 } else if (is_win) { | 2556 } else if (is_win) { |
2557 sources += [ "src/d8-windows.cc" ] | 2557 sources += [ "src/d8-windows.cc" ] |
2558 } | 2558 } |
2559 | 2559 |
2560 if (v8_enable_i18n_support) { | 2560 if (v8_enable_i18n_support) { |
2561 deps += [ "//third_party/icu" ] | 2561 deps += [ "//third_party/icu" ] |
2562 } | 2562 } |
| 2563 |
| 2564 defines = [] |
| 2565 if (v8_enable_inspector_override) { |
| 2566 defines += [ "V8_INSPECTOR_ENABLED" ] |
| 2567 } |
2563 } | 2568 } |
2564 | 2569 |
2565 v8_isolate_run("d8") { | 2570 v8_isolate_run("d8") { |
2566 deps = [ | 2571 deps = [ |
2567 ":d8", | 2572 ":d8", |
2568 ] | 2573 ] |
2569 | 2574 |
2570 isolate = "//src/d8.isolate" | 2575 isolate = "//src/d8.isolate" |
2571 } | 2576 } |
2572 | 2577 |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2964 ] | 2969 ] |
2965 | 2970 |
2966 configs = [ | 2971 configs = [ |
2967 ":external_config", | 2972 ":external_config", |
2968 ":internal_config_base", | 2973 ":internal_config_base", |
2969 ] | 2974 ] |
2970 } | 2975 } |
2971 | 2976 |
2972 v8_fuzzer("wasm_data_section_fuzzer") { | 2977 v8_fuzzer("wasm_data_section_fuzzer") { |
2973 } | 2978 } |
OLD | NEW |