| 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 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "src/js/harmony-species.js", | 342 "src/js/harmony-species.js", |
| 343 "src/js/harmony-unicode-regexps.js", | 343 "src/js/harmony-unicode-regexps.js", |
| 344 "src/js/harmony-string-padding.js", | 344 "src/js/harmony-string-padding.js", |
| 345 "src/js/promise-extra.js", | 345 "src/js/promise-extra.js", |
| 346 ] | 346 ] |
| 347 | 347 |
| 348 outputs = [ | 348 outputs = [ |
| 349 "$target_gen_dir/experimental-libraries.cc", | 349 "$target_gen_dir/experimental-libraries.cc", |
| 350 ] | 350 ] |
| 351 | 351 |
| 352 if (v8_enable_i18n_support) { |
| 353 sources += [ "src/js/icu-case-mapping.js" ] |
| 354 } |
| 355 |
| 352 args = [ | 356 args = [ |
| 353 rebase_path("$target_gen_dir/experimental-libraries.cc", | 357 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 354 root_build_dir), | 358 root_build_dir), |
| 355 "EXPERIMENTAL", | 359 "EXPERIMENTAL", |
| 356 ] + rebase_path(sources, root_build_dir) | 360 ] + rebase_path(sources, root_build_dir) |
| 357 | 361 |
| 358 if (v8_use_external_startup_data) { | 362 if (v8_use_external_startup_data) { |
| 359 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 363 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
| 360 args += [ | 364 args += [ |
| 361 "--startup_blob", | 365 "--startup_blob", |
| (...skipping 1795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2157 | 2161 |
| 2158 configs -= [ "//build/config/compiler:chromium_code" ] | 2162 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2159 configs += [ "//build/config/compiler:no_chromium_code" ] | 2163 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2160 configs += [ | 2164 configs += [ |
| 2161 ":internal_config", | 2165 ":internal_config", |
| 2162 ":libplatform_config", | 2166 ":libplatform_config", |
| 2163 ":features", | 2167 ":features", |
| 2164 ":toolchain", | 2168 ":toolchain", |
| 2165 ] | 2169 ] |
| 2166 } | 2170 } |
| OLD | NEW |