| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "src/json.js", | 193 "src/json.js", |
| 194 "src/regexp.js", | 194 "src/regexp.js", |
| 195 "src/arraybuffer.js", | 195 "src/arraybuffer.js", |
| 196 "src/typedarray.js", | 196 "src/typedarray.js", |
| 197 "src/collection.js", | 197 "src/collection.js", |
| 198 "src/collection-iterator.js", | 198 "src/collection-iterator.js", |
| 199 "src/weak_collection.js", | 199 "src/weak_collection.js", |
| 200 "src/promise.js", | 200 "src/promise.js", |
| 201 "src/object-observe.js", | 201 "src/object-observe.js", |
| 202 "src/macros.py", | 202 "src/macros.py", |
| 203 "src/array-iterator.js", |
| 204 "src/string-iterator.js", |
| 203 ] | 205 ] |
| 204 | 206 |
| 205 outputs = [ | 207 outputs = [ |
| 206 "$target_gen_dir/libraries.cc" | 208 "$target_gen_dir/libraries.cc" |
| 207 ] | 209 ] |
| 208 | 210 |
| 209 if (v8_enable_i18n_support) { | 211 if (v8_enable_i18n_support) { |
| 210 sources += [ "src/i18n.js" ] | 212 sources += [ "src/i18n.js" ] |
| 211 } | 213 } |
| 212 | 214 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 231 script = "tools/js2c.py" | 233 script = "tools/js2c.py" |
| 232 | 234 |
| 233 # 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 |
| 234 # changes. | 236 # changes. |
| 235 source_prereqs = [ "tools/jsmin.py" ] | 237 source_prereqs = [ "tools/jsmin.py" ] |
| 236 | 238 |
| 237 sources = [ | 239 sources = [ |
| 238 "src/macros.py", | 240 "src/macros.py", |
| 239 "src/proxy.js", | 241 "src/proxy.js", |
| 240 "src/generator.js", | 242 "src/generator.js", |
| 241 "src/array-iterator.js", | |
| 242 "src/harmony-string.js", | 243 "src/harmony-string.js", |
| 243 "src/harmony-array.js", | 244 "src/harmony-array.js", |
| 244 "src/unscopables.js", | 245 "src/unscopables.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 = [ |
| (...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1272 deps = [ | 1273 deps = [ |
| 1273 ":v8_base", | 1274 ":v8_base", |
| 1274 ":v8_nosnapshot", | 1275 ":v8_nosnapshot", |
| 1275 ] | 1276 ] |
| 1276 } | 1277 } |
| 1277 | 1278 |
| 1278 direct_dependent_configs = [ ":external_config" ] | 1279 direct_dependent_configs = [ ":external_config" ] |
| 1279 } | 1280 } |
| 1280 | 1281 |
| 1281 } | 1282 } |
| OLD | NEW |