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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 "src/compiler/instruction-selector.cc", | 492 "src/compiler/instruction-selector.cc", |
493 "src/compiler/instruction-selector.h", | 493 "src/compiler/instruction-selector.h", |
494 "src/compiler/instruction.cc", | 494 "src/compiler/instruction.cc", |
495 "src/compiler/instruction.h", | 495 "src/compiler/instruction.h", |
496 "src/compiler/js-context-specialization.cc", | 496 "src/compiler/js-context-specialization.cc", |
497 "src/compiler/js-context-specialization.h", | 497 "src/compiler/js-context-specialization.h", |
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-inlining.cc", |
| 503 "src/compiler/js-inlining.h", |
502 "src/compiler/js-operator.h", | 504 "src/compiler/js-operator.h", |
503 "src/compiler/js-typed-lowering.cc", | 505 "src/compiler/js-typed-lowering.cc", |
504 "src/compiler/js-typed-lowering.h", | 506 "src/compiler/js-typed-lowering.h", |
505 "src/compiler/linkage-impl.h", | 507 "src/compiler/linkage-impl.h", |
506 "src/compiler/linkage.cc", | 508 "src/compiler/linkage.cc", |
507 "src/compiler/linkage.h", | 509 "src/compiler/linkage.h", |
508 "src/compiler/machine-node-factory.h", | 510 "src/compiler/machine-node-factory.h", |
509 "src/compiler/machine-operator-reducer.cc", | 511 "src/compiler/machine-operator-reducer.cc", |
510 "src/compiler/machine-operator-reducer.h", | 512 "src/compiler/machine-operator-reducer.h", |
511 "src/compiler/machine-operator.h", | 513 "src/compiler/machine-operator.h", |
(...skipping 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1271 deps = [ | 1273 deps = [ |
1272 ":v8_base", | 1274 ":v8_base", |
1273 ":v8_nosnapshot", | 1275 ":v8_nosnapshot", |
1274 ] | 1276 ] |
1275 } | 1277 } |
1276 | 1278 |
1277 direct_dependent_configs = [ ":external_config" ] | 1279 direct_dependent_configs = [ ":external_config" ] |
1278 } | 1280 } |
1279 | 1281 |
1280 } | 1282 } |
OLD | NEW |