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

Side by Side Diff: BUILD.gn

Issue 583723002: Implement .forEach() on typed arrays (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove unneeded check for holes Created 6 years, 3 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') | src/harmony-typedarray.js » ('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 # 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 # The script depends on this other script, this rule causes a rebuild if it 236 # The script depends on this other script, this rule causes a rebuild if it
237 # changes. 237 # changes.
238 source_prereqs = [ "tools/jsmin.py" ] 238 source_prereqs = [ "tools/jsmin.py" ]
239 239
240 sources = [ 240 sources = [
241 "src/macros.py", 241 "src/macros.py",
242 "src/proxy.js", 242 "src/proxy.js",
243 "src/generator.js", 243 "src/generator.js",
244 "src/harmony-string.js", 244 "src/harmony-string.js",
245 "src/harmony-array.js", 245 "src/harmony-array.js",
246 "src/harmony-typedarray.js",
246 "src/harmony-classes.js", 247 "src/harmony-classes.js",
247 ] 248 ]
248 249
249 outputs = [ 250 outputs = [
250 "$target_gen_dir/experimental-libraries.cc" 251 "$target_gen_dir/experimental-libraries.cc"
251 ] 252 ]
252 253
253 args = [ 254 args = [
254 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 255 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
255 "EXPERIMENTAL", 256 "EXPERIMENTAL",
(...skipping 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 deps = [ 1389 deps = [
1389 ":v8_base", 1390 ":v8_base",
1390 ":v8_nosnapshot", 1391 ":v8_nosnapshot",
1391 ] 1392 ]
1392 } 1393 }
1393 1394
1394 direct_dependent_configs = [ ":external_config" ] 1395 direct_dependent_configs = [ ":external_config" ]
1395 } 1396 }
1396 1397
1397 } 1398 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/harmony-typedarray.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698