| 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 "src/compiler/js-generic-lowering.cc", | 498 "src/compiler/js-generic-lowering.cc", |
| 499 "src/compiler/js-generic-lowering.h", | 499 "src/compiler/js-generic-lowering.h", |
| 500 "src/compiler/js-graph.cc", | 500 "src/compiler/js-graph.cc", |
| 501 "src/compiler/js-graph.h", | 501 "src/compiler/js-graph.h", |
| 502 "src/compiler/js-operator.h", | 502 "src/compiler/js-operator.h", |
| 503 "src/compiler/js-typed-lowering.cc", | 503 "src/compiler/js-typed-lowering.cc", |
| 504 "src/compiler/js-typed-lowering.h", | 504 "src/compiler/js-typed-lowering.h", |
| 505 "src/compiler/linkage-impl.h", | 505 "src/compiler/linkage-impl.h", |
| 506 "src/compiler/linkage.cc", | 506 "src/compiler/linkage.cc", |
| 507 "src/compiler/linkage.h", | 507 "src/compiler/linkage.h", |
| 508 "src/compiler/lowering-builder.cc", | |
| 509 "src/compiler/lowering-builder.h", | |
| 510 "src/compiler/machine-node-factory.h", | 508 "src/compiler/machine-node-factory.h", |
| 511 "src/compiler/machine-operator-reducer.cc", | 509 "src/compiler/machine-operator-reducer.cc", |
| 512 "src/compiler/machine-operator-reducer.h", | 510 "src/compiler/machine-operator-reducer.h", |
| 513 "src/compiler/machine-operator.h", | 511 "src/compiler/machine-operator.h", |
| 514 "src/compiler/node-aux-data-inl.h", | 512 "src/compiler/node-aux-data-inl.h", |
| 515 "src/compiler/node-aux-data.h", | 513 "src/compiler/node-aux-data.h", |
| 516 "src/compiler/node-cache.cc", | 514 "src/compiler/node-cache.cc", |
| 517 "src/compiler/node-cache.h", | 515 "src/compiler/node-cache.h", |
| 518 "src/compiler/node-matchers.h", | 516 "src/compiler/node-matchers.h", |
| 519 "src/compiler/node-properties-inl.h", | 517 "src/compiler/node-properties-inl.h", |
| (...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1272 deps = [ | 1270 deps = [ |
| 1273 ":v8_base", | 1271 ":v8_base", |
| 1274 ":v8_nosnapshot", | 1272 ":v8_nosnapshot", |
| 1275 ] | 1273 ] |
| 1276 } | 1274 } |
| 1277 | 1275 |
| 1278 direct_dependent_configs = [ ":external_config" ] | 1276 direct_dependent_configs = [ ":external_config" ] |
| 1279 } | 1277 } |
| 1280 | 1278 |
| 1281 } | 1279 } |
| OLD | NEW |