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

Side by Side Diff: BUILD.gn

Issue 2405253006: [builtins] implement Array.prototype[@@iterator] in TFJ builtins (Closed)
Patch Set: latest round Created 4 years, 2 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/ast/ast-types.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/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 "src/js/array.js", 411 "src/js/array.js",
412 "src/js/string.js", 412 "src/js/string.js",
413 "src/js/regexp.js", 413 "src/js/regexp.js",
414 "src/js/arraybuffer.js", 414 "src/js/arraybuffer.js",
415 "src/js/typedarray.js", 415 "src/js/typedarray.js",
416 "src/js/collection.js", 416 "src/js/collection.js",
417 "src/js/weak-collection.js", 417 "src/js/weak-collection.js",
418 "src/js/collection-iterator.js", 418 "src/js/collection-iterator.js",
419 "src/js/promise.js", 419 "src/js/promise.js",
420 "src/js/messages.js", 420 "src/js/messages.js",
421 "src/js/array-iterator.js",
422 "src/js/templates.js", 421 "src/js/templates.js",
423 "src/js/spread.js", 422 "src/js/spread.js",
424 "src/js/proxy.js", 423 "src/js/proxy.js",
425 "src/js/async-await.js", 424 "src/js/async-await.js",
426 "src/debug/mirrors.js", 425 "src/debug/mirrors.js",
427 "src/debug/debug.js", 426 "src/debug/debug.js",
428 "src/debug/liveedit.js", 427 "src/debug/liveedit.js",
429 ] 428 ]
430 429
431 outputs = [ 430 outputs = [
(...skipping 2530 matching lines...) Expand 10 before | Expand all | Expand 10 after
2962 ] 2961 ]
2963 2962
2964 configs = [ 2963 configs = [
2965 ":external_config", 2964 ":external_config",
2966 ":internal_config_base", 2965 ":internal_config_base",
2967 ] 2966 ]
2968 } 2967 }
2969 2968
2970 v8_fuzzer("wasm_data_section_fuzzer") { 2969 v8_fuzzer("wasm_data_section_fuzzer") {
2971 } 2970 }
OLDNEW
« no previous file with comments | « no previous file | src/ast/ast-types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698