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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 "src/compiler/js-builtin-reducer.cc", | 513 "src/compiler/js-builtin-reducer.cc", |
514 "src/compiler/js-builtin-reducer.h", | 514 "src/compiler/js-builtin-reducer.h", |
515 "src/compiler/js-context-specialization.cc", | 515 "src/compiler/js-context-specialization.cc", |
516 "src/compiler/js-context-specialization.h", | 516 "src/compiler/js-context-specialization.h", |
517 "src/compiler/js-generic-lowering.cc", | 517 "src/compiler/js-generic-lowering.cc", |
518 "src/compiler/js-generic-lowering.h", | 518 "src/compiler/js-generic-lowering.h", |
519 "src/compiler/js-graph.cc", | 519 "src/compiler/js-graph.cc", |
520 "src/compiler/js-graph.h", | 520 "src/compiler/js-graph.h", |
521 "src/compiler/js-inlining.cc", | 521 "src/compiler/js-inlining.cc", |
522 "src/compiler/js-inlining.h", | 522 "src/compiler/js-inlining.h", |
| 523 "src/compiler/js-operator.cc", |
523 "src/compiler/js-operator.h", | 524 "src/compiler/js-operator.h", |
524 "src/compiler/js-typed-lowering.cc", | 525 "src/compiler/js-typed-lowering.cc", |
525 "src/compiler/js-typed-lowering.h", | 526 "src/compiler/js-typed-lowering.h", |
526 "src/compiler/linkage-impl.h", | 527 "src/compiler/linkage-impl.h", |
527 "src/compiler/linkage.cc", | 528 "src/compiler/linkage.cc", |
528 "src/compiler/linkage.h", | 529 "src/compiler/linkage.h", |
529 "src/compiler/machine-operator-reducer.cc", | 530 "src/compiler/machine-operator-reducer.cc", |
530 "src/compiler/machine-operator-reducer.h", | 531 "src/compiler/machine-operator-reducer.h", |
531 "src/compiler/machine-operator.cc", | 532 "src/compiler/machine-operator.cc", |
532 "src/compiler/machine-operator.h", | 533 "src/compiler/machine-operator.h", |
(...skipping 876 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1409 deps = [ | 1410 deps = [ |
1410 ":v8_base", | 1411 ":v8_base", |
1411 ":v8_nosnapshot", | 1412 ":v8_nosnapshot", |
1412 ] | 1413 ] |
1413 } | 1414 } |
1414 | 1415 |
1415 direct_dependent_configs = [ ":external_config" ] | 1416 direct_dependent_configs = [ ":external_config" ] |
1416 } | 1417 } |
1417 | 1418 |
1418 } | 1419 } |
OLD | NEW |