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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 "src/js/harmony-species.js", | 399 "src/js/harmony-species.js", |
400 "src/js/harmony-unicode-regexps.js", | 400 "src/js/harmony-unicode-regexps.js", |
401 "src/js/harmony-string-padding.js", | 401 "src/js/harmony-string-padding.js", |
402 "src/js/promise-extra.js", | 402 "src/js/promise-extra.js", |
403 ] | 403 ] |
404 | 404 |
405 outputs = [ | 405 outputs = [ |
406 "$target_gen_dir/experimental-libraries.cc", | 406 "$target_gen_dir/experimental-libraries.cc", |
407 ] | 407 ] |
408 | 408 |
| 409 if (v8_enable_i18n_support) { |
| 410 sources += [ "src/js/icu-case-mapping.js" ] |
| 411 } |
| 412 |
409 args = [ | 413 args = [ |
410 rebase_path("$target_gen_dir/experimental-libraries.cc", | 414 rebase_path("$target_gen_dir/experimental-libraries.cc", |
411 root_build_dir), | 415 root_build_dir), |
412 "EXPERIMENTAL", | 416 "EXPERIMENTAL", |
413 ] + rebase_path(sources, root_build_dir) | 417 ] + rebase_path(sources, root_build_dir) |
414 | 418 |
415 if (v8_use_external_startup_data) { | 419 if (v8_use_external_startup_data) { |
416 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 420 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
417 args += [ | 421 args += [ |
418 "--startup_blob", | 422 "--startup_blob", |
(...skipping 1831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2250 | 2254 |
2251 configs -= [ "//build/config/compiler:chromium_code" ] | 2255 configs -= [ "//build/config/compiler:chromium_code" ] |
2252 configs += [ "//build/config/compiler:no_chromium_code" ] | 2256 configs += [ "//build/config/compiler:no_chromium_code" ] |
2253 configs += [ | 2257 configs += [ |
2254 ":internal_config", | 2258 ":internal_config", |
2255 ":libplatform_config", | 2259 ":libplatform_config", |
2256 ":features", | 2260 ":features", |
2257 ":toolchain", | 2261 ":toolchain", |
2258 ] | 2262 ] |
2259 } | 2263 } |
OLD | NEW |