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/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 "src/js/harmony-species.js", | 393 "src/js/harmony-species.js", |
394 "src/js/harmony-unicode-regexps.js", | 394 "src/js/harmony-unicode-regexps.js", |
395 "src/js/harmony-string-padding.js", | 395 "src/js/harmony-string-padding.js", |
396 "src/js/promise-extra.js", | 396 "src/js/promise-extra.js", |
397 ] | 397 ] |
398 | 398 |
399 outputs = [ | 399 outputs = [ |
400 "$target_gen_dir/experimental-libraries.cc", | 400 "$target_gen_dir/experimental-libraries.cc", |
401 ] | 401 ] |
402 | 402 |
| 403 if (v8_enable_i18n_support) { |
| 404 sources += [ "src/js/icu-case-mapping.js" ] |
| 405 } |
| 406 |
403 args = [ | 407 args = [ |
404 rebase_path("$target_gen_dir/experimental-libraries.cc", | 408 rebase_path("$target_gen_dir/experimental-libraries.cc", |
405 root_build_dir), | 409 root_build_dir), |
406 "EXPERIMENTAL", | 410 "EXPERIMENTAL", |
407 ] + rebase_path(sources, root_build_dir) | 411 ] + rebase_path(sources, root_build_dir) |
408 | 412 |
409 if (v8_use_external_startup_data) { | 413 if (v8_use_external_startup_data) { |
410 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 414 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
411 args += [ | 415 args += [ |
412 "--startup_blob", | 416 "--startup_blob", |
(...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2214 | 2218 |
2215 configs -= [ "//build/config/compiler:chromium_code" ] | 2219 configs -= [ "//build/config/compiler:chromium_code" ] |
2216 configs += [ "//build/config/compiler:no_chromium_code" ] | 2220 configs += [ "//build/config/compiler:no_chromium_code" ] |
2217 configs += [ | 2221 configs += [ |
2218 ":internal_config", | 2222 ":internal_config", |
2219 ":libplatform_config", | 2223 ":libplatform_config", |
2220 ":features", | 2224 ":features", |
2221 ":toolchain", | 2225 ":toolchain", |
2222 ] | 2226 ] |
2223 } | 2227 } |
OLD | NEW |