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 2562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2573 if (is_posix) { | 2573 if (is_posix) { |
2574 sources += [ "src/d8-posix.cc" ] | 2574 sources += [ "src/d8-posix.cc" ] |
2575 } else if (is_win) { | 2575 } else if (is_win) { |
2576 sources += [ "src/d8-windows.cc" ] | 2576 sources += [ "src/d8-windows.cc" ] |
2577 } | 2577 } |
2578 | 2578 |
2579 if (v8_enable_i18n_support) { | 2579 if (v8_enable_i18n_support) { |
2580 deps += [ "//third_party/icu" ] | 2580 deps += [ "//third_party/icu" ] |
2581 } | 2581 } |
2582 | 2582 |
2583 if (v8_correctness_fuzzer) { | |
2584 deps += [ "tools/foozzie/:v8_correctness_fuzzer_resources" ] | |
kjellander_chromium
2017/01/10 10:06:31
This should probably be
tools/foozzie:v8_correctne
Michael Achenbach
2017/01/10 10:17:35
Done.
| |
2585 } | |
2586 | |
2583 defines = [] | 2587 defines = [] |
2584 if (v8_enable_inspector) { | 2588 if (v8_enable_inspector) { |
2585 defines += [ "V8_INSPECTOR_ENABLED" ] | 2589 defines += [ "V8_INSPECTOR_ENABLED" ] |
2586 } | 2590 } |
2587 } | 2591 } |
2588 | 2592 |
2589 v8_isolate_run("d8") { | 2593 v8_isolate_run("d8") { |
2590 deps = [ | 2594 deps = [ |
2591 ":d8", | 2595 ":d8", |
2592 ] | 2596 ] |
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3012 ] | 3016 ] |
3013 | 3017 |
3014 configs = [ | 3018 configs = [ |
3015 ":external_config", | 3019 ":external_config", |
3016 ":internal_config_base", | 3020 ":internal_config_base", |
3017 ] | 3021 ] |
3018 } | 3022 } |
3019 | 3023 |
3020 v8_fuzzer("wasm_data_section_fuzzer") { | 3024 v8_fuzzer("wasm_data_section_fuzzer") { |
3021 } | 3025 } |
OLD | NEW |