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

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: Add AsyncFunction constructor 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/bootstrapper.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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 # The script depends on this other script, this rule causes a rebuild if it 379 # The script depends on this other script, this rule causes a rebuild if it
380 # changes. 380 # changes.
381 inputs = [ 381 inputs = [
382 "tools/jsmin.py", 382 "tools/jsmin.py",
383 ] 383 ]
384 384
385 # NOSORT 385 # NOSORT
386 sources = [ 386 sources = [
387 "src/js/macros.py", 387 "src/js/macros.py",
388 "src/messages.h", 388 "src/messages.h",
389 "src/js/harmony-async-await.js",
389 "src/js/harmony-atomics.js", 390 "src/js/harmony-atomics.js",
390 "src/js/harmony-regexp-exec.js", 391 "src/js/harmony-regexp-exec.js",
391 "src/js/harmony-sharedarraybuffer.js", 392 "src/js/harmony-sharedarraybuffer.js",
392 "src/js/harmony-simd.js", 393 "src/js/harmony-simd.js",
393 "src/js/harmony-species.js", 394 "src/js/harmony-species.js",
394 "src/js/harmony-unicode-regexps.js", 395 "src/js/harmony-unicode-regexps.js",
395 "src/js/harmony-string-padding.js", 396 "src/js/harmony-string-padding.js",
396 "src/js/promise-extra.js", 397 "src/js/promise-extra.js",
397 ] 398 ]
398 399
399 outputs = [ 400 outputs = [
400 "$target_gen_dir/experimental-libraries.cc", 401 "$target_gen_dir/experimental-libraries.cc",
401 ] 402 ]
402 403
403 args = [ 404 args = [
404 rebase_path("$target_gen_dir/experimental-libraries.cc", 405 rebase_path("$target_gen_dir/experimental-libraries.cc",
405 root_build_dir), 406 root_build_dir),
406 "EXPERIMENTAL", 407 "EXPERIMENTAL",
(...skipping 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after
2214 2215
2215 configs -= [ "//build/config/compiler:chromium_code" ] 2216 configs -= [ "//build/config/compiler:chromium_code" ]
2216 configs += [ "//build/config/compiler:no_chromium_code" ] 2217 configs += [ "//build/config/compiler:no_chromium_code" ]
2217 configs += [ 2218 configs += [
2218 ":internal_config", 2219 ":internal_config",
2219 ":libplatform_config", 2220 ":libplatform_config",
2220 ":features", 2221 ":features",
2221 ":toolchain", 2222 ":toolchain",
2222 ] 2223 ]
2223 } 2224 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/bootstrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698