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

Side by Side Diff: BUILD.gn

Issue 384963002: ES6 Unscopables (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« 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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 # changes. 246 # changes.
247 source_prereqs = [ "tools/jsmin.py" ] 247 source_prereqs = [ "tools/jsmin.py" ]
248 248
249 sources = [ 249 sources = [
250 "src/macros.py", 250 "src/macros.py",
251 "src/proxy.js", 251 "src/proxy.js",
252 "src/generator.js", 252 "src/generator.js",
253 "src/array-iterator.js", 253 "src/array-iterator.js",
254 "src/harmony-string.js", 254 "src/harmony-string.js",
255 "src/harmony-array.js", 255 "src/harmony-array.js",
256 "src/unscopables.js",
256 ] 257 ]
257 258
258 outputs = [ 259 outputs = [
259 "$target_gen_dir/experimental-libraries.cc" 260 "$target_gen_dir/experimental-libraries.cc"
260 ] 261 ]
261 262
262 args = [ 263 args = [
263 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 264 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
264 "EXPERIMENTAL", 265 "EXPERIMENTAL",
265 v8_compress_startup_data 266 v8_compress_startup_data
(...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 deps = [ 1289 deps = [
1289 ":v8_base", 1290 ":v8_base",
1290 ":v8_nosnapshot", 1291 ":v8_nosnapshot",
1291 ] 1292 ]
1292 } 1293 }
1293 1294
1294 direct_dependent_configs = [ ":external_config" ] 1295 direct_dependent_configs = [ ":external_config" ]
1295 } 1296 }
1296 1297
1297 } 1298 }
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