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/host_byteorder.gni") | 8 import("//build/config/host_byteorder.gni") |
9 import("//build/config/mips.gni") | 9 import("//build/config/mips.gni") |
10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
(...skipping 2446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2457 if (v8_enable_i18n_support) { | 2457 if (v8_enable_i18n_support) { |
2458 public_deps = [ | 2458 public_deps = [ |
2459 "//third_party/icu", | 2459 "//third_party/icu", |
2460 ] | 2460 ] |
2461 if (is_win) { | 2461 if (is_win) { |
2462 deps += [ "//third_party/icu:icudata" ] | 2462 deps += [ "//third_party/icu:icudata" ] |
2463 } | 2463 } |
2464 } else { | 2464 } else { |
2465 sources -= [ | 2465 sources -= [ |
2466 "src/builtins/builtins-intl.cc", | 2466 "src/builtins/builtins-intl.cc", |
| 2467 "src/char-predicates.cc", |
2467 "src/intl.cc", | 2468 "src/intl.cc", |
2468 "src/intl.h", | 2469 "src/intl.h", |
2469 "src/objects/intl-objects.cc", | 2470 "src/objects/intl-objects.cc", |
2470 "src/objects/intl-objects.h", | 2471 "src/objects/intl-objects.h", |
2471 "src/runtime/runtime-intl.cc", | 2472 "src/runtime/runtime-intl.cc", |
2472 ] | 2473 ] |
2473 } | 2474 } |
2474 | 2475 |
2475 if (v8_postmortem_support) { | 2476 if (v8_postmortem_support) { |
2476 sources += [ "$target_gen_dir/debug-support.cc" ] | 2477 sources += [ "$target_gen_dir/debug-support.cc" ] |
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3338 ] | 3339 ] |
3339 | 3340 |
3340 configs = [ | 3341 configs = [ |
3341 ":external_config", | 3342 ":external_config", |
3342 ":internal_config_base", | 3343 ":internal_config_base", |
3343 ] | 3344 ] |
3344 } | 3345 } |
3345 | 3346 |
3346 v8_fuzzer("wasm_compile_fuzzer") { | 3347 v8_fuzzer("wasm_compile_fuzzer") { |
3347 } | 3348 } |
OLD | NEW |