| 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_deprecation_warnings = false | 7 v8_deprecation_warnings = false |
| 8 v8_enable_disassembler = false | 8 v8_enable_disassembler = false |
| 9 v8_enable_gdbjit = false | 9 v8_enable_gdbjit = false |
| 10 v8_enable_handle_zapping = true | 10 v8_enable_handle_zapping = true |
| (...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 "src/compiler/js-graph.cc", | 526 "src/compiler/js-graph.cc", |
| 527 "src/compiler/js-graph.h", | 527 "src/compiler/js-graph.h", |
| 528 "src/compiler/js-inlining.cc", | 528 "src/compiler/js-inlining.cc", |
| 529 "src/compiler/js-inlining.h", | 529 "src/compiler/js-inlining.h", |
| 530 "src/compiler/js-intrinsic-builder.cc", | 530 "src/compiler/js-intrinsic-builder.cc", |
| 531 "src/compiler/js-intrinsic-builder.h", | 531 "src/compiler/js-intrinsic-builder.h", |
| 532 "src/compiler/js-operator.cc", | 532 "src/compiler/js-operator.cc", |
| 533 "src/compiler/js-operator.h", | 533 "src/compiler/js-operator.h", |
| 534 "src/compiler/js-typed-lowering.cc", | 534 "src/compiler/js-typed-lowering.cc", |
| 535 "src/compiler/js-typed-lowering.h", | 535 "src/compiler/js-typed-lowering.h", |
| 536 "src/compiler/jump-threading.cc", |
| 537 "src/compiler/jump-threading.h", |
| 536 "src/compiler/linkage-impl.h", | 538 "src/compiler/linkage-impl.h", |
| 537 "src/compiler/linkage.cc", | 539 "src/compiler/linkage.cc", |
| 538 "src/compiler/linkage.h", | 540 "src/compiler/linkage.h", |
| 539 "src/compiler/machine-operator-reducer.cc", | 541 "src/compiler/machine-operator-reducer.cc", |
| 540 "src/compiler/machine-operator-reducer.h", | 542 "src/compiler/machine-operator-reducer.h", |
| 541 "src/compiler/machine-operator.cc", | 543 "src/compiler/machine-operator.cc", |
| 542 "src/compiler/machine-operator.h", | 544 "src/compiler/machine-operator.h", |
| 543 "src/compiler/machine-type.cc", | 545 "src/compiler/machine-type.cc", |
| 544 "src/compiler/machine-type.h", | 546 "src/compiler/machine-type.h", |
| 545 "src/compiler/node-aux-data-inl.h", | 547 "src/compiler/node-aux-data-inl.h", |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 deps = [ | 1443 deps = [ |
| 1442 ":v8_base", | 1444 ":v8_base", |
| 1443 ":v8_nosnapshot", | 1445 ":v8_nosnapshot", |
| 1444 ] | 1446 ] |
| 1445 } | 1447 } |
| 1446 | 1448 |
| 1447 direct_dependent_configs = [ ":external_config" ] | 1449 direct_dependent_configs = [ ":external_config" ] |
| 1448 } | 1450 } |
| 1449 | 1451 |
| 1450 } | 1452 } |
| OLD | NEW |