| 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 sources = [ | 414 sources = [ |
| 415 "src/js/macros.py", | 415 "src/js/macros.py", |
| 416 "src/messages.h", | 416 "src/messages.h", |
| 417 "src/js/harmony-atomics.js", | 417 "src/js/harmony-atomics.js", |
| 418 "src/js/harmony-regexp-exec.js", | 418 "src/js/harmony-regexp-exec.js", |
| 419 "src/js/harmony-sharedarraybuffer.js", | 419 "src/js/harmony-sharedarraybuffer.js", |
| 420 "src/js/harmony-simd.js", | 420 "src/js/harmony-simd.js", |
| 421 "src/js/harmony-species.js", | 421 "src/js/harmony-species.js", |
| 422 "src/js/harmony-unicode-regexps.js", | 422 "src/js/harmony-unicode-regexps.js", |
| 423 "src/js/harmony-string-padding.js", | 423 "src/js/harmony-string-padding.js", |
| 424 "src/js/intl-extra.js", | |
| 425 "src/js/promise-extra.js", | 424 "src/js/promise-extra.js", |
| 426 ] | 425 ] |
| 427 | 426 |
| 428 outputs = [ | 427 outputs = [ |
| 429 "$target_gen_dir/experimental-libraries.cc", | 428 "$target_gen_dir/experimental-libraries.cc", |
| 430 ] | 429 ] |
| 431 | 430 |
| 432 if (v8_enable_i18n_support) { | 431 if (v8_enable_i18n_support) { |
| 433 sources += [ "src/js/icu-case-mapping.js" ] | 432 sources += [ |
| 433 "src/js/icu-case-mapping.js", |
| 434 "src/js/intl-extra.js", |
| 435 ] |
| 434 } | 436 } |
| 435 | 437 |
| 436 args = [ | 438 args = [ |
| 437 rebase_path("$target_gen_dir/experimental-libraries.cc", | 439 rebase_path("$target_gen_dir/experimental-libraries.cc", |
| 438 root_build_dir), | 440 root_build_dir), |
| 439 "EXPERIMENTAL", | 441 "EXPERIMENTAL", |
| 440 ] + rebase_path(sources, root_build_dir) | 442 ] + rebase_path(sources, root_build_dir) |
| 441 | 443 |
| 442 if (v8_use_external_startup_data) { | 444 if (v8_use_external_startup_data) { |
| 443 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] | 445 outputs += [ "$target_gen_dir/libraries_experimental.bin" ] |
| (...skipping 1757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2201 ] | 2203 ] |
| 2202 | 2204 |
| 2203 deps = [ | 2205 deps = [ |
| 2204 ":fuzzer_support", | 2206 ":fuzzer_support", |
| 2205 ] | 2207 ] |
| 2206 | 2208 |
| 2207 configs = [ | 2209 configs = [ |
| 2208 ":internal_config", | 2210 ":internal_config", |
| 2209 ] | 2211 ] |
| 2210 } | 2212 } |
| OLD | NEW |