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_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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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-typedarray.js", |
247 "src/harmony-classes.js", | 247 "src/harmony-classes.js", |
| 248 "src/harmony-tostring.js" |
248 ] | 249 ] |
249 | 250 |
250 outputs = [ | 251 outputs = [ |
251 "$target_gen_dir/experimental-libraries.cc" | 252 "$target_gen_dir/experimental-libraries.cc" |
252 ] | 253 ] |
253 | 254 |
254 args = [ | 255 args = [ |
255 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), | 256 rebase_path("$target_gen_dir/experimental-libraries.cc", root_build_dir), |
256 "EXPERIMENTAL", | 257 "EXPERIMENTAL", |
257 v8_compress_startup_data | 258 v8_compress_startup_data |
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1438 deps = [ | 1439 deps = [ |
1439 ":v8_base", | 1440 ":v8_base", |
1440 ":v8_nosnapshot", | 1441 ":v8_nosnapshot", |
1441 ] | 1442 ] |
1442 } | 1443 } |
1443 | 1444 |
1444 direct_dependent_configs = [ ":external_config" ] | 1445 direct_dependent_configs = [ ":external_config" ] |
1445 } | 1446 } |
1446 | 1447 |
1447 } | 1448 } |
OLD | NEW |