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

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: disable opt too to fix test variants ._< 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/builtins.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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
328 # The script depends on this other script, this rule causes a rebuild if it 328 # The script depends on this other script, this rule causes a rebuild if it
329 # changes. 329 # changes.
330 inputs = [ 330 inputs = [
331 "tools/jsmin.py", 331 "tools/jsmin.py",
332 ] 332 ]
333 333
334 # NOSORT 334 # NOSORT
335 sources = [ 335 sources = [
336 "src/js/macros.py", 336 "src/js/macros.py",
337 "src/messages.h", 337 "src/messages.h",
338 "src/js/harmony-async-await.js",
338 "src/js/harmony-atomics.js", 339 "src/js/harmony-atomics.js",
339 "src/js/harmony-regexp-exec.js", 340 "src/js/harmony-regexp-exec.js",
340 "src/js/harmony-sharedarraybuffer.js", 341 "src/js/harmony-sharedarraybuffer.js",
341 "src/js/harmony-simd.js", 342 "src/js/harmony-simd.js",
342 "src/js/harmony-species.js", 343 "src/js/harmony-species.js",
343 "src/js/harmony-unicode-regexps.js", 344 "src/js/harmony-unicode-regexps.js",
344 "src/js/harmony-string-padding.js", 345 "src/js/harmony-string-padding.js",
345 "src/js/promise-extra.js", 346 "src/js/promise-extra.js",
346 ] 347 ]
347 348
348 outputs = [ 349 outputs = [
349 "$target_gen_dir/experimental-libraries.cc", 350 "$target_gen_dir/experimental-libraries.cc",
350 ] 351 ]
351 352
352 args = [ 353 args = [
353 rebase_path("$target_gen_dir/experimental-libraries.cc", 354 rebase_path("$target_gen_dir/experimental-libraries.cc",
354 root_build_dir), 355 root_build_dir),
355 "EXPERIMENTAL", 356 "EXPERIMENTAL",
(...skipping 1801 matching lines...) Expand 10 before | Expand all | Expand 10 after
2157 2158
2158 configs -= [ "//build/config/compiler:chromium_code" ] 2159 configs -= [ "//build/config/compiler:chromium_code" ]
2159 configs += [ "//build/config/compiler:no_chromium_code" ] 2160 configs += [ "//build/config/compiler:no_chromium_code" ]
2160 configs += [ 2161 configs += [
2161 ":internal_config", 2162 ":internal_config",
2162 ":libplatform_config", 2163 ":libplatform_config",
2163 ":features", 2164 ":features",
2164 ":toolchain", 2165 ":toolchain",
2165 ] 2166 ]
2166 } 2167 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/builtins.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698