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 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 # changes. | 480 # changes. |
481 inputs = [ | 481 inputs = [ |
482 "tools/jsmin.py", | 482 "tools/jsmin.py", |
483 ] | 483 ] |
484 | 484 |
485 # NOSORT | 485 # NOSORT |
486 sources = [ | 486 sources = [ |
487 "src/js/macros.py", | 487 "src/js/macros.py", |
488 "src/messages.h", | 488 "src/messages.h", |
489 "src/js/harmony-atomics.js", | 489 "src/js/harmony-atomics.js", |
490 "src/js/harmony-simd.js", | |
491 ] | 490 ] |
492 | 491 |
493 outputs = [ | 492 outputs = [ |
494 "$target_gen_dir/experimental-libraries.cc", | 493 "$target_gen_dir/experimental-libraries.cc", |
495 ] | 494 ] |
496 | 495 |
497 if (v8_enable_i18n_support) { | 496 if (v8_enable_i18n_support) { |
498 sources += [ | 497 sources += [ |
499 "src/js/datetime-format-to-parts.js", | 498 "src/js/datetime-format-to-parts.js", |
500 "src/js/icu-case-mapping.js", | 499 "src/js/icu-case-mapping.js", |
(...skipping 1203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1704 "src/runtime/runtime-liveedit.cc", | 1703 "src/runtime/runtime-liveedit.cc", |
1705 "src/runtime/runtime-maths.cc", | 1704 "src/runtime/runtime-maths.cc", |
1706 "src/runtime/runtime-module.cc", | 1705 "src/runtime/runtime-module.cc", |
1707 "src/runtime/runtime-numbers.cc", | 1706 "src/runtime/runtime-numbers.cc", |
1708 "src/runtime/runtime-object.cc", | 1707 "src/runtime/runtime-object.cc", |
1709 "src/runtime/runtime-operators.cc", | 1708 "src/runtime/runtime-operators.cc", |
1710 "src/runtime/runtime-promise.cc", | 1709 "src/runtime/runtime-promise.cc", |
1711 "src/runtime/runtime-proxy.cc", | 1710 "src/runtime/runtime-proxy.cc", |
1712 "src/runtime/runtime-regexp.cc", | 1711 "src/runtime/runtime-regexp.cc", |
1713 "src/runtime/runtime-scopes.cc", | 1712 "src/runtime/runtime-scopes.cc", |
1714 "src/runtime/runtime-simd.cc", | |
1715 "src/runtime/runtime-strings.cc", | 1713 "src/runtime/runtime-strings.cc", |
1716 "src/runtime/runtime-symbol.cc", | 1714 "src/runtime/runtime-symbol.cc", |
1717 "src/runtime/runtime-test.cc", | 1715 "src/runtime/runtime-test.cc", |
1718 "src/runtime/runtime-typedarray.cc", | 1716 "src/runtime/runtime-typedarray.cc", |
1719 "src/runtime/runtime-utils.h", | 1717 "src/runtime/runtime-utils.h", |
1720 "src/runtime/runtime-wasm.cc", | 1718 "src/runtime/runtime-wasm.cc", |
1721 "src/runtime/runtime.cc", | 1719 "src/runtime/runtime.cc", |
1722 "src/runtime/runtime.h", | 1720 "src/runtime/runtime.h", |
1723 "src/safepoint-table.cc", | 1721 "src/safepoint-table.cc", |
1724 "src/safepoint-table.h", | 1722 "src/safepoint-table.h", |
(...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3090 ] | 3088 ] |
3091 | 3089 |
3092 configs = [ | 3090 configs = [ |
3093 ":external_config", | 3091 ":external_config", |
3094 ":internal_config_base", | 3092 ":internal_config_base", |
3095 ] | 3093 ] |
3096 } | 3094 } |
3097 | 3095 |
3098 v8_fuzzer("wasm_data_section_fuzzer") { | 3096 v8_fuzzer("wasm_data_section_fuzzer") { |
3099 } | 3097 } |
OLD | NEW |