| 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 "src/compiler/change-lowering.cc", | 482 "src/compiler/change-lowering.cc", |
| 483 "src/compiler/change-lowering.h", | 483 "src/compiler/change-lowering.h", |
| 484 "src/compiler/code-generator-impl.h", | 484 "src/compiler/code-generator-impl.h", |
| 485 "src/compiler/code-generator.cc", | 485 "src/compiler/code-generator.cc", |
| 486 "src/compiler/code-generator.h", | 486 "src/compiler/code-generator.h", |
| 487 "src/compiler/common-node-cache.h", | 487 "src/compiler/common-node-cache.h", |
| 488 "src/compiler/common-operator.cc", | 488 "src/compiler/common-operator.cc", |
| 489 "src/compiler/common-operator.h", | 489 "src/compiler/common-operator.h", |
| 490 "src/compiler/control-builders.cc", | 490 "src/compiler/control-builders.cc", |
| 491 "src/compiler/control-builders.h", | 491 "src/compiler/control-builders.h", |
| 492 "src/compiler/control-equivalence.h", |
| 492 "src/compiler/control-reducer.cc", | 493 "src/compiler/control-reducer.cc", |
| 493 "src/compiler/control-reducer.h", | 494 "src/compiler/control-reducer.h", |
| 494 "src/compiler/diamond.h", | 495 "src/compiler/diamond.h", |
| 495 "src/compiler/frame.h", | 496 "src/compiler/frame.h", |
| 496 "src/compiler/gap-resolver.cc", | 497 "src/compiler/gap-resolver.cc", |
| 497 "src/compiler/gap-resolver.h", | 498 "src/compiler/gap-resolver.h", |
| 498 "src/compiler/generic-algorithm-inl.h", | 499 "src/compiler/generic-algorithm-inl.h", |
| 499 "src/compiler/generic-algorithm.h", | 500 "src/compiler/generic-algorithm.h", |
| 500 "src/compiler/generic-graph.h", | 501 "src/compiler/generic-graph.h", |
| 501 "src/compiler/generic-node-inl.h", | 502 "src/compiler/generic-node-inl.h", |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1441 deps = [ | 1442 deps = [ |
| 1442 ":v8_base", | 1443 ":v8_base", |
| 1443 ":v8_nosnapshot", | 1444 ":v8_nosnapshot", |
| 1444 ] | 1445 ] |
| 1445 } | 1446 } |
| 1446 | 1447 |
| 1447 direct_dependent_configs = [ ":external_config" ] | 1448 direct_dependent_configs = [ ":external_config" ] |
| 1448 } | 1449 } |
| 1449 | 1450 |
| 1450 } | 1451 } |
| OLD | NEW |