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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 "src/js/harmony-species.js", | 394 "src/js/harmony-species.js", |
395 "src/js/harmony-unicode-regexps.js", | 395 "src/js/harmony-unicode-regexps.js", |
396 "src/js/harmony-string-padding.js", | 396 "src/js/harmony-string-padding.js", |
397 "src/js/promise-extra.js", | 397 "src/js/promise-extra.js", |
398 ] | 398 ] |
399 | 399 |
400 outputs = [ | 400 outputs = [ |
401 "$target_gen_dir/experimental-libraries.cc", | 401 "$target_gen_dir/experimental-libraries.cc", |
402 ] | 402 ] |
403 | 403 |
| 404 if (v8_enable_i18n_support) { |
| 405 sources += [ "src/js/icu-case-mapping.js" ] |
| 406 } |
| 407 |
404 args = [ | 408 args = [ |
405 rebase_path("$target_gen_dir/experimental-libraries.cc", | 409 rebase_path("$target_gen_dir/experimental-libraries.cc", |
406 root_build_dir), | 410 root_build_dir), |
407 "EXPERIMENTAL", | 411 "EXPERIMENTAL", |
408 ] + rebase_path(sources, root_build_dir) | 412 ] + rebase_path(sources, root_build_dir) |
409 | 413 |
410 if (v8_use_external_startup_data) { | 414 if (v8_use_external_startup_data) { |
411 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 415 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
412 args += [ | 416 args += [ |
413 "--startup_blob", | 417 "--startup_blob", |
(...skipping 1889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2303 ":v8", | 2307 ":v8", |
2304 ":v8_libplatform", | 2308 ":v8_libplatform", |
2305 "//build/config/sanitizers:deps", | 2309 "//build/config/sanitizers:deps", |
2306 "//build/win:default_exe_manifest", | 2310 "//build/win:default_exe_manifest", |
2307 ] | 2311 ] |
2308 | 2312 |
2309 if (v8_enable_i18n_support) { | 2313 if (v8_enable_i18n_support) { |
2310 deps += [ "//third_party/icu" ] | 2314 deps += [ "//third_party/icu" ] |
2311 } | 2315 } |
2312 } | 2316 } |
OLD | NEW |