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 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
493 "src/compiler/control-builders.cc", | 493 "src/compiler/control-builders.cc", |
494 "src/compiler/control-builders.h", | 494 "src/compiler/control-builders.h", |
495 "src/compiler/control-reducer.cc", | 495 "src/compiler/control-reducer.cc", |
496 "src/compiler/control-reducer.h", | 496 "src/compiler/control-reducer.h", |
497 "src/compiler/frame.h", | 497 "src/compiler/frame.h", |
498 "src/compiler/gap-resolver.cc", | 498 "src/compiler/gap-resolver.cc", |
499 "src/compiler/gap-resolver.h", | 499 "src/compiler/gap-resolver.h", |
500 "src/compiler/generic-algorithm-inl.h", | 500 "src/compiler/generic-algorithm-inl.h", |
501 "src/compiler/generic-algorithm.h", | 501 "src/compiler/generic-algorithm.h", |
502 "src/compiler/generic-graph.h", | 502 "src/compiler/generic-graph.h", |
| 503 "src/compiler/generic-node-inl.h", |
| 504 "src/compiler/generic-node.h", |
503 "src/compiler/graph-builder.cc", | 505 "src/compiler/graph-builder.cc", |
504 "src/compiler/graph-builder.h", | 506 "src/compiler/graph-builder.h", |
505 "src/compiler/graph-inl.h", | 507 "src/compiler/graph-inl.h", |
506 "src/compiler/graph-reducer.cc", | 508 "src/compiler/graph-reducer.cc", |
507 "src/compiler/graph-reducer.h", | 509 "src/compiler/graph-reducer.h", |
508 "src/compiler/graph-replay.cc", | 510 "src/compiler/graph-replay.cc", |
509 "src/compiler/graph-replay.h", | 511 "src/compiler/graph-replay.h", |
510 "src/compiler/graph-visualizer.cc", | 512 "src/compiler/graph-visualizer.cc", |
511 "src/compiler/graph-visualizer.h", | 513 "src/compiler/graph-visualizer.h", |
512 "src/compiler/graph.cc", | 514 "src/compiler/graph.cc", |
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1445 deps = [ | 1447 deps = [ |
1446 ":v8_base", | 1448 ":v8_base", |
1447 ":v8_nosnapshot", | 1449 ":v8_nosnapshot", |
1448 ] | 1450 ] |
1449 } | 1451 } |
1450 | 1452 |
1451 direct_dependent_configs = [ ":external_config" ] | 1453 direct_dependent_configs = [ ":external_config" ] |
1452 } | 1454 } |
1453 | 1455 |
1454 } | 1456 } |
OLD | NEW |