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

Side by Side Diff: BUILD.gn

Issue 548833002: [es6] implement Object.assign (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased Created 6 years 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-object.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_deprecation_warnings = false 7 v8_deprecation_warnings = false
8 v8_enable_disassembler = false 8 v8_enable_disassembler = false
9 v8_enable_gdbjit = false 9 v8_enable_gdbjit = false
10 v8_enable_handle_zapping = true 10 v8_enable_handle_zapping = true
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 232
233 sources = [ 233 sources = [
234 "src/macros.py", 234 "src/macros.py",
235 "src/proxy.js", 235 "src/proxy.js",
236 "src/generator.js", 236 "src/generator.js",
237 "src/harmony-string.js", 237 "src/harmony-string.js",
238 "src/harmony-array.js", 238 "src/harmony-array.js",
239 "src/harmony-typedarray.js", 239 "src/harmony-typedarray.js",
240 "src/harmony-classes.js", 240 "src/harmony-classes.js",
241 "src/harmony-tostring.js", 241 "src/harmony-tostring.js",
242 "src/harmony-templates.js" 242 "src/harmony-templates.js",
243 "src/harmony-object.js"
243 ] 244 ]
244 245
245 outputs = [ 246 outputs = [
246 "$target_gen_dir/experimental-libraries.cc" 247 "$target_gen_dir/experimental-libraries.cc"
247 ] 248 ]
248 249
249 args = [ 250 args = [
250 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), 251 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir),
251 "EXPERIMENTAL", 252 "EXPERIMENTAL",
252 ] + rebase_path(sources, root_build_dir) 253 ] + rebase_path(sources, root_build_dir)
(...skipping 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 deps = [ 1444 deps = [
1444 ":v8_base", 1445 ":v8_base",
1445 ":v8_nosnapshot", 1446 ":v8_nosnapshot",
1446 ] 1447 ]
1447 } 1448 }
1448 1449
1449 direct_dependent_configs = [ ":external_config" ] 1450 direct_dependent_configs = [ ":external_config" ]
1450 } 1451 }
1451 1452
1452 } 1453 }
OLDNEW
« no previous file with comments | « no previous file | src/bootstrapper.cc » ('j') | src/harmony-object.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698