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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 "src/js/typedarray.js", | 394 "src/js/typedarray.js", |
395 "src/js/collection.js", | 395 "src/js/collection.js", |
396 "src/js/weak-collection.js", | 396 "src/js/weak-collection.js", |
397 "src/js/collection-iterator.js", | 397 "src/js/collection-iterator.js", |
398 "src/js/promise.js", | 398 "src/js/promise.js", |
399 "src/js/messages.js", | 399 "src/js/messages.js", |
400 "src/js/array-iterator.js", | 400 "src/js/array-iterator.js", |
401 "src/js/templates.js", | 401 "src/js/templates.js", |
402 "src/js/spread.js", | 402 "src/js/spread.js", |
403 "src/js/proxy.js", | 403 "src/js/proxy.js", |
| 404 "src/js/async-await.js", |
404 "src/debug/mirrors.js", | 405 "src/debug/mirrors.js", |
405 "src/debug/debug.js", | 406 "src/debug/debug.js", |
406 "src/debug/liveedit.js", | 407 "src/debug/liveedit.js", |
407 ] | 408 ] |
408 | 409 |
409 outputs = [ | 410 outputs = [ |
410 "$target_gen_dir/libraries.cc", | 411 "$target_gen_dir/libraries.cc", |
411 ] | 412 ] |
412 | 413 |
413 if (v8_enable_i18n_support) { | 414 if (v8_enable_i18n_support) { |
(...skipping 22 matching lines...) Expand all Loading... |
436 # The script depends on this other script, this rule causes a rebuild if it | 437 # The script depends on this other script, this rule causes a rebuild if it |
437 # changes. | 438 # changes. |
438 inputs = [ | 439 inputs = [ |
439 "tools/jsmin.py", | 440 "tools/jsmin.py", |
440 ] | 441 ] |
441 | 442 |
442 # NOSORT | 443 # NOSORT |
443 sources = [ | 444 sources = [ |
444 "src/js/macros.py", | 445 "src/js/macros.py", |
445 "src/messages.h", | 446 "src/messages.h", |
446 "src/js/harmony-async-await.js", | |
447 "src/js/harmony-atomics.js", | 447 "src/js/harmony-atomics.js", |
448 "src/js/harmony-simd.js", | 448 "src/js/harmony-simd.js", |
449 "src/js/harmony-string-padding.js", | 449 "src/js/harmony-string-padding.js", |
450 ] | 450 ] |
451 | 451 |
452 outputs = [ | 452 outputs = [ |
453 "$target_gen_dir/experimental-libraries.cc", | 453 "$target_gen_dir/experimental-libraries.cc", |
454 ] | 454 ] |
455 | 455 |
456 if (v8_enable_i18n_support) { | 456 if (v8_enable_i18n_support) { |
(...skipping 2408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2865 ":fuzzer_support", | 2865 ":fuzzer_support", |
2866 ":lib_wasm_section_fuzzer", | 2866 ":lib_wasm_section_fuzzer", |
2867 ":wasm_module_runner", | 2867 ":wasm_module_runner", |
2868 ] | 2868 ] |
2869 | 2869 |
2870 configs = [ ":internal_config" ] | 2870 configs = [ ":internal_config" ] |
2871 } | 2871 } |
2872 | 2872 |
2873 v8_fuzzer("wasm_data_section_fuzzer") { | 2873 v8_fuzzer("wasm_data_section_fuzzer") { |
2874 } | 2874 } |
OLD | NEW |