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

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: remove weird arrow-generator thing 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') | src/compiler.cc » ('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/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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 # The script depends on this other script, this rule causes a rebuild if it 380 # The script depends on this other script, this rule causes a rebuild if it
381 # changes. 381 # changes.
382 inputs = [ 382 inputs = [
383 "tools/jsmin.py", 383 "tools/jsmin.py",
384 ] 384 ]
385 385
386 # NOSORT 386 # NOSORT
387 sources = [ 387 sources = [
388 "src/js/macros.py", 388 "src/js/macros.py",
389 "src/messages.h", 389 "src/messages.h",
390 "src/js/harmony-async-await.js",
390 "src/js/harmony-atomics.js", 391 "src/js/harmony-atomics.js",
391 "src/js/harmony-regexp-exec.js", 392 "src/js/harmony-regexp-exec.js",
392 "src/js/harmony-sharedarraybuffer.js", 393 "src/js/harmony-sharedarraybuffer.js",
393 "src/js/harmony-simd.js", 394 "src/js/harmony-simd.js",
394 "src/js/harmony-species.js", 395 "src/js/harmony-species.js",
395 "src/js/harmony-unicode-regexps.js", 396 "src/js/harmony-unicode-regexps.js",
396 "src/js/harmony-string-padding.js", 397 "src/js/harmony-string-padding.js",
397 "src/js/promise-extra.js", 398 "src/js/promise-extra.js",
398 ] 399 ]
399 400
(...skipping 1903 matching lines...) Expand 10 before | Expand all | Expand 10 after
2303 ":v8", 2304 ":v8",
2304 ":v8_libplatform", 2305 ":v8_libplatform",
2305 "//build/config/sanitizers:deps", 2306 "//build/config/sanitizers:deps",
2306 "//build/win:default_exe_manifest", 2307 "//build/win:default_exe_manifest",
2307 ] 2308 ]
2308 2309
2309 if (v8_enable_i18n_support) { 2310 if (v8_enable_i18n_support) {
2310 deps += [ "//third_party/icu" ] 2311 deps += [ "//third_party/icu" ]
2311 } 2312 }
2312 } 2313 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/compiler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698