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

Side by Side Diff: BUILD.gn

Issue 475423003: Implement Function.prototype.toMethod. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: CR feedback 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 | include/v8.h » ('j') | src/objects.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 # 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 # The script depends on this other script, this rule causes a rebuild if it 235 # The script depends on this other script, this rule causes a rebuild if it
236 # changes. 236 # changes.
237 source_prereqs = [ "tools/jsmin.py" ] 237 source_prereqs = [ "tools/jsmin.py" ]
238 238
239 sources = [ 239 sources = [
240 "src/macros.py", 240 "src/macros.py",
241 "src/proxy.js", 241 "src/proxy.js",
242 "src/generator.js", 242 "src/generator.js",
243 "src/harmony-string.js", 243 "src/harmony-string.js",
244 "src/harmony-array.js", 244 "src/harmony-array.js",
245 "src/harmony-classes.js",
245 ] 246 ]
246 247
247 outputs = [ 248 outputs = [
248 "$target_gen_dir/experimental-libraries.cc" 249 "$target_gen_dir/experimental-libraries.cc"
249 ] 250 ]
250 251
251 args = [ 252 args = [
252 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 253 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
253 "EXPERIMENTAL", 254 "EXPERIMENTAL",
254 v8_compress_startup_data 255 v8_compress_startup_data
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after
1271 deps = [ 1272 deps = [
1272 ":v8_base", 1273 ":v8_base",
1273 ":v8_nosnapshot", 1274 ":v8_nosnapshot",
1274 ] 1275 ]
1275 } 1276 }
1276 1277
1277 direct_dependent_configs = [ ":external_config" ] 1278 direct_dependent_configs = [ ":external_config" ]
1278 } 1279 }
1279 1280
1280 } 1281 }
OLDNEW
« no previous file with comments | « no previous file | include/v8.h » ('j') | src/objects.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698