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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 "src/compiler/jump-threading.h", | 537 "src/compiler/jump-threading.h", |
538 "src/compiler/linkage-impl.h", | 538 "src/compiler/linkage-impl.h", |
539 "src/compiler/linkage.cc", | 539 "src/compiler/linkage.cc", |
540 "src/compiler/linkage.h", | 540 "src/compiler/linkage.h", |
541 "src/compiler/machine-operator-reducer.cc", | 541 "src/compiler/machine-operator-reducer.cc", |
542 "src/compiler/machine-operator-reducer.h", | 542 "src/compiler/machine-operator-reducer.h", |
543 "src/compiler/machine-operator.cc", | 543 "src/compiler/machine-operator.cc", |
544 "src/compiler/machine-operator.h", | 544 "src/compiler/machine-operator.h", |
545 "src/compiler/machine-type.cc", | 545 "src/compiler/machine-type.cc", |
546 "src/compiler/machine-type.h", | 546 "src/compiler/machine-type.h", |
| 547 "src/compiler/move-optimizer.cc", |
| 548 "src/compiler/move-optimizer.h", |
547 "src/compiler/node-aux-data-inl.h", | 549 "src/compiler/node-aux-data-inl.h", |
548 "src/compiler/node-aux-data.h", | 550 "src/compiler/node-aux-data.h", |
549 "src/compiler/node-cache.cc", | 551 "src/compiler/node-cache.cc", |
550 "src/compiler/node-cache.h", | 552 "src/compiler/node-cache.h", |
551 "src/compiler/node-matchers.h", | 553 "src/compiler/node-matchers.h", |
552 "src/compiler/node-properties-inl.h", | 554 "src/compiler/node-properties-inl.h", |
553 "src/compiler/node-properties.h", | 555 "src/compiler/node-properties.h", |
554 "src/compiler/node.cc", | 556 "src/compiler/node.cc", |
555 "src/compiler/node.h", | 557 "src/compiler/node.h", |
556 "src/compiler/opcodes.h", | 558 "src/compiler/opcodes.h", |
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1443 deps = [ | 1445 deps = [ |
1444 ":v8_base", | 1446 ":v8_base", |
1445 ":v8_nosnapshot", | 1447 ":v8_nosnapshot", |
1446 ] | 1448 ] |
1447 } | 1449 } |
1448 | 1450 |
1449 direct_dependent_configs = [ ":external_config" ] | 1451 direct_dependent_configs = [ ":external_config" ] |
1450 } | 1452 } |
1451 | 1453 |
1452 } | 1454 } |
OLD | NEW |