| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 "src/array.js", | 182 "src/array.js", |
| 183 "src/string.js", | 183 "src/string.js", |
| 184 "src/uri.js", | 184 "src/uri.js", |
| 185 "third_party/fdlibm/fdlibm.js", | 185 "third_party/fdlibm/fdlibm.js", |
| 186 "src/math.js", | 186 "src/math.js", |
| 187 "src/apinatives.js", | 187 "src/apinatives.js", |
| 188 "src/date.js", | 188 "src/date.js", |
| 189 "src/regexp.js", | 189 "src/regexp.js", |
| 190 "src/arraybuffer.js", | 190 "src/arraybuffer.js", |
| 191 "src/typedarray.js", | 191 "src/typedarray.js", |
| 192 "src/generator.js", |
| 192 "src/object-observe.js", | 193 "src/object-observe.js", |
| 193 "src/collection.js", | 194 "src/collection.js", |
| 194 "src/weak-collection.js", | 195 "src/weak-collection.js", |
| 195 "src/collection-iterator.js", | 196 "src/collection-iterator.js", |
| 196 "src/promise.js", | 197 "src/promise.js", |
| 197 "src/messages.js", | 198 "src/messages.js", |
| 198 "src/json.js", | 199 "src/json.js", |
| 199 "src/array-iterator.js", | 200 "src/array-iterator.js", |
| 200 "src/string-iterator.js", | 201 "src/string-iterator.js", |
| 201 "src/debug-debugger.js", | 202 "src/debug-debugger.js", |
| (...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 deps = [ | 1383 deps = [ |
| 1383 ":v8_base", | 1384 ":v8_base", |
| 1384 ":v8_nosnapshot", | 1385 ":v8_nosnapshot", |
| 1385 ] | 1386 ] |
| 1386 } | 1387 } |
| 1387 | 1388 |
| 1388 direct_dependent_configs = [ ":external_config" ] | 1389 direct_dependent_configs = [ ":external_config" ] |
| 1389 } | 1390 } |
| 1390 | 1391 |
| 1391 } | 1392 } |
| OLD | NEW |