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