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

Side by Side Diff: BUILD.gn

Issue 1226063002: Guard @@isConcatSpreadable behind a flag (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: stage new option so test262 passes Created 5 years, 5 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') | 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/mips.gni") 7 import("//build/config/mips.gni")
8 8
9 # Because standalone V8 builds are not supported, assume this is part of a 9 # Because standalone V8 builds are not supported, assume this is part of a
10 # Chromium build. 10 # Chromium build.
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 # changes. 266 # changes.
267 inputs = [ "tools/jsmin.py" ] 267 inputs = [ "tools/jsmin.py" ]
268 268
269 sources = [ 269 sources = [
270 "src/macros.py", 270 "src/macros.py",
271 "src/messages.h", 271 "src/messages.h",
272 "src/proxy.js", 272 "src/proxy.js",
273 "src/generator.js", 273 "src/generator.js",
274 "src/harmony-atomics.js", 274 "src/harmony-atomics.js",
275 "src/harmony-array-includes.js", 275 "src/harmony-array-includes.js",
276 "src/harmony-concat-spreadable.js",
276 "src/harmony-tostring.js", 277 "src/harmony-tostring.js",
277 "src/harmony-regexp.js", 278 "src/harmony-regexp.js",
278 "src/harmony-reflect.js", 279 "src/harmony-reflect.js",
279 "src/harmony-spread.js", 280 "src/harmony-spread.js",
280 "src/harmony-object.js", 281 "src/harmony-object.js",
281 "src/harmony-sharedarraybuffer.js" 282 "src/harmony-sharedarraybuffer.js"
282 ] 283 ]
283 284
284 outputs = [ 285 outputs = [
285 "$target_gen_dir/experimental-libraries.cc", 286 "$target_gen_dir/experimental-libraries.cc",
(...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after
1712 "src/d8-debug.cc", 1713 "src/d8-debug.cc",
1713 "src/d8-debug.h", 1714 "src/d8-debug.h",
1714 "$target_gen_dir/d8-js.cc", 1715 "$target_gen_dir/d8-js.cc",
1715 ] 1716 ]
1716 } 1717 }
1717 if (v8_enable_i18n_support) { 1718 if (v8_enable_i18n_support) {
1718 deps += [ "//third_party/icu" ] 1719 deps += [ "//third_party/icu" ]
1719 } 1720 }
1720 } 1721 }
1721 } 1722 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698