| 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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
| 8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 "src/js/typedarray.js", | 418 "src/js/typedarray.js", |
| 419 "src/js/collection.js", | 419 "src/js/collection.js", |
| 420 "src/js/weak-collection.js", | 420 "src/js/weak-collection.js", |
| 421 "src/js/collection-iterator.js", | 421 "src/js/collection-iterator.js", |
| 422 "src/js/promise.js", | 422 "src/js/promise.js", |
| 423 "src/js/messages.js", | 423 "src/js/messages.js", |
| 424 "src/js/templates.js", | 424 "src/js/templates.js", |
| 425 "src/js/spread.js", | 425 "src/js/spread.js", |
| 426 "src/js/proxy.js", | 426 "src/js/proxy.js", |
| 427 "src/js/async-await.js", | 427 "src/js/async-await.js", |
| 428 "src/js/harmony-string-padding.js", |
| 428 "src/debug/mirrors.js", | 429 "src/debug/mirrors.js", |
| 429 "src/debug/debug.js", | 430 "src/debug/debug.js", |
| 430 "src/debug/liveedit.js", | 431 "src/debug/liveedit.js", |
| 431 ] | 432 ] |
| 432 | 433 |
| 433 outputs = [ | 434 outputs = [ |
| 434 "$target_gen_dir/libraries.cc", | 435 "$target_gen_dir/libraries.cc", |
| 435 ] | 436 ] |
| 436 | 437 |
| 437 if (v8_enable_i18n_support) { | 438 if (v8_enable_i18n_support) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 462 inputs = [ | 463 inputs = [ |
| 463 "tools/jsmin.py", | 464 "tools/jsmin.py", |
| 464 ] | 465 ] |
| 465 | 466 |
| 466 # NOSORT | 467 # NOSORT |
| 467 sources = [ | 468 sources = [ |
| 468 "src/js/macros.py", | 469 "src/js/macros.py", |
| 469 "src/messages.h", | 470 "src/messages.h", |
| 470 "src/js/harmony-atomics.js", | 471 "src/js/harmony-atomics.js", |
| 471 "src/js/harmony-simd.js", | 472 "src/js/harmony-simd.js", |
| 472 "src/js/harmony-string-padding.js", | |
| 473 ] | 473 ] |
| 474 | 474 |
| 475 outputs = [ | 475 outputs = [ |
| 476 "$target_gen_dir/experimental-libraries.cc", | 476 "$target_gen_dir/experimental-libraries.cc", |
| 477 ] | 477 ] |
| 478 | 478 |
| 479 if (v8_enable_i18n_support) { | 479 if (v8_enable_i18n_support) { |
| 480 sources += [ | 480 sources += [ |
| 481 "src/js/datetime-format-to-parts.js", | 481 "src/js/datetime-format-to-parts.js", |
| 482 "src/js/icu-case-mapping.js", | 482 "src/js/icu-case-mapping.js", |
| (...skipping 2529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3012 ] | 3012 ] |
| 3013 | 3013 |
| 3014 configs = [ | 3014 configs = [ |
| 3015 ":external_config", | 3015 ":external_config", |
| 3016 ":internal_config_base", | 3016 ":internal_config_base", |
| 3017 ] | 3017 ] |
| 3018 } | 3018 } |
| 3019 | 3019 |
| 3020 v8_fuzzer("wasm_data_section_fuzzer") { | 3020 v8_fuzzer("wasm_data_section_fuzzer") { |
| 3021 } | 3021 } |
| OLD | NEW |