| OLD | NEW |
| 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 Loading... |
| 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 1191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1444 deps = [ | 1445 deps = [ |
| 1445 ":v8_base", | 1446 ":v8_base", |
| 1446 ":v8_nosnapshot", | 1447 ":v8_nosnapshot", |
| 1447 ] | 1448 ] |
| 1448 } | 1449 } |
| 1449 | 1450 |
| 1450 direct_dependent_configs = [ ":external_config" ] | 1451 direct_dependent_configs = [ ":external_config" ] |
| 1451 } | 1452 } |
| 1452 | 1453 |
| 1453 } | 1454 } |
| OLD | NEW |