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

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: majorly improve stack traces, get rid of self-spawning behaviour, create inner generator function Created 4 years, 8 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/parsing/parser.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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 # The script depends on this other script, this rule causes a rebuild if it 333 # The script depends on this other script, this rule causes a rebuild if it
334 # changes. 334 # changes.
335 inputs = [ 335 inputs = [
336 "tools/jsmin.py", 336 "tools/jsmin.py",
337 ] 337 ]
338 338
339 # NOSORT 339 # NOSORT
340 sources = [ 340 sources = [
341 "src/js/macros.py", 341 "src/js/macros.py",
342 "src/messages.h", 342 "src/messages.h",
343 "src/js/harmony-async-await.js",
343 "src/js/harmony-atomics.js", 344 "src/js/harmony-atomics.js",
344 "src/js/harmony-regexp-exec.js", 345 "src/js/harmony-regexp-exec.js",
345 "src/js/harmony-object-observe.js", 346 "src/js/harmony-object-observe.js",
346 "src/js/harmony-sharedarraybuffer.js", 347 "src/js/harmony-sharedarraybuffer.js",
347 "src/js/harmony-simd.js", 348 "src/js/harmony-simd.js",
348 "src/js/harmony-species.js", 349 "src/js/harmony-species.js",
349 "src/js/harmony-unicode-regexps.js", 350 "src/js/harmony-unicode-regexps.js",
350 "src/js/harmony-string-padding.js", 351 "src/js/harmony-string-padding.js",
351 "src/js/promise-extra.js", 352 "src/js/promise-extra.js",
352 ] 353 ]
353 354
354 outputs = [ 355 outputs = [
355 "$target_gen_dir/experimental-libraries.cc", 356 "$target_gen_dir/experimental-libraries.cc",
356 ] 357 ]
357 358
358 args = [ 359 args = [
359 rebase_path("$target_gen_dir/experimental-libraries.cc", 360 rebase_path("$target_gen_dir/experimental-libraries.cc",
360 root_build_dir), 361 root_build_dir),
361 "EXPERIMENTAL", 362 "EXPERIMENTAL",
(...skipping 1797 matching lines...) Expand 10 before | Expand all | Expand 10 after
2159 2160
2160 configs -= [ "//build/config/compiler:chromium_code" ] 2161 configs -= [ "//build/config/compiler:chromium_code" ]
2161 configs += [ "//build/config/compiler:no_chromium_code" ] 2162 configs += [ "//build/config/compiler:no_chromium_code" ]
2162 configs += [ 2163 configs += [
2163 ":internal_config", 2164 ":internal_config",
2164 ":libplatform_config", 2165 ":libplatform_config",
2165 ":features", 2166 ":features",
2166 ":toolchain", 2167 ":toolchain",
2167 ] 2168 ]
2168 } 2169 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/parsing/parser.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698