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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 | 213 |
214 # The script depends on this other script, this rule causes a rebuild if it | 214 # The script depends on this other script, this rule causes a rebuild if it |
215 # changes. | 215 # changes. |
216 source_prereqs = [ "tools/jsmin.py" ] | 216 source_prereqs = [ "tools/jsmin.py" ] |
217 | 217 |
218 sources = [ | 218 sources = [ |
219 "src/macros.py", | 219 "src/macros.py", |
220 "src/symbol.js", | 220 "src/symbol.js", |
221 "src/proxy.js", | 221 "src/proxy.js", |
222 "src/collection.js", | 222 "src/collection.js", |
| 223 "src/collection-iterator.js", |
223 "src/generator.js", | 224 "src/generator.js", |
224 "src/array-iterator.js", | 225 "src/array-iterator.js", |
225 "src/harmony-string.js", | 226 "src/harmony-string.js", |
226 "src/harmony-array.js", | 227 "src/harmony-array.js", |
227 "src/harmony-math.js", | 228 "src/harmony-math.js", |
228 ] | 229 ] |
229 | 230 |
230 outputs = [ | 231 outputs = [ |
231 "$target_gen_dir/experimental-libraries.cc" | 232 "$target_gen_dir/experimental-libraries.cc" |
232 ] | 233 ] |
(...skipping 28 matching lines...) Expand all Loading... |
261 | 262 |
262 deps = [ ":mksnapshot($host_toolchain)" ] | 263 deps = [ ":mksnapshot($host_toolchain)" ] |
263 | 264 |
264 script = "tools/run.py" | 265 script = "tools/run.py" |
265 | 266 |
266 outputs = [ | 267 outputs = [ |
267 "$target_gen_dir/snapshot.cc" | 268 "$target_gen_dir/snapshot.cc" |
268 ] | 269 ] |
269 | 270 |
270 args = [ | 271 args = [ |
271 "./" + rebase_path(get_label_info(":mksnapshot($host_toolchain)", | 272 "./" + rebase_path(get_label_info(":mksnapshot($host_toolchain)", |
272 "root_out_dir") + "/mksnapshot", | 273 "root_out_dir") + "/mksnapshot", |
273 root_build_dir), | 274 root_build_dir), |
274 "--log-snapshot-positions", | 275 "--log-snapshot-positions", |
275 "--logfile", rebase_path("$target_gen_dir/snapshot.log", root_build_dir) | 276 "--logfile", rebase_path("$target_gen_dir/snapshot.log", root_build_dir) |
276 ] | 277 ] |
277 | 278 |
278 if (v8_random_seed != "0") { | 279 if (v8_random_seed != "0") { |
279 args += [ "--random-seed", v8_random_seed ] | 280 args += [ "--random-seed", v8_random_seed ] |
280 } | 281 } |
281 | 282 |
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1025 } else { | 1026 } else { |
1026 deps = [ | 1027 deps = [ |
1027 ":v8_base", | 1028 ":v8_base", |
1028 ":v8_nosnapshot", | 1029 ":v8_nosnapshot", |
1029 ] | 1030 ] |
1030 } | 1031 } |
1031 # TODO(jochen): Support direct dependent configs. | 1032 # TODO(jochen): Support direct dependent configs. |
1032 } | 1033 } |
1033 | 1034 |
1034 } | 1035 } |
OLD | NEW |