Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(431)

Side by Side Diff: BUILD.gn

Issue 2365123002: Move async/await JS support code out of experimental natives (Closed)
Patch Set: Alphabetize Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/js/prologue.js » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/js/prologue.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698