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

Side by Side Diff: BUILD.gn

Issue 1895603002: [esnext] prototype runtime implementation for async functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@AsyncFunction
Patch Set: fix some nits Created 4 years, 7 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') | no next file with comments »
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/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
414 # The script depends on this other script, this rule causes a rebuild if it 414 # The script depends on this other script, this rule causes a rebuild if it
415 # changes. 415 # changes.
416 inputs = [ 416 inputs = [
417 "tools/jsmin.py", 417 "tools/jsmin.py",
418 ] 418 ]
419 419
420 # NOSORT 420 # NOSORT
421 sources = [ 421 sources = [
422 "src/js/macros.py", 422 "src/js/macros.py",
423 "src/messages.h", 423 "src/messages.h",
424 "src/js/harmony-async-await.js",
424 "src/js/harmony-atomics.js", 425 "src/js/harmony-atomics.js",
425 "src/js/harmony-regexp-exec.js", 426 "src/js/harmony-regexp-exec.js",
426 "src/js/harmony-sharedarraybuffer.js", 427 "src/js/harmony-sharedarraybuffer.js",
427 "src/js/harmony-simd.js", 428 "src/js/harmony-simd.js",
428 "src/js/harmony-species.js", 429 "src/js/harmony-species.js",
429 "src/js/harmony-unicode-regexps.js", 430 "src/js/harmony-unicode-regexps.js",
430 "src/js/harmony-string-padding.js", 431 "src/js/harmony-string-padding.js",
431 "src/js/promise-extra.js", 432 "src/js/promise-extra.js",
432 ] 433 ]
433 434
(...skipping 1774 matching lines...) Expand 10 before | Expand all | Expand 10 after
2208 ] 2209 ]
2209 2210
2210 deps = [ 2211 deps = [
2211 ":fuzzer_support", 2212 ":fuzzer_support",
2212 ] 2213 ]
2213 2214
2214 configs = [ 2215 configs = [
2215 ":internal_config", 2216 ":internal_config",
2216 ] 2217 ]
2217 } 2218 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698