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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 "src/compiler/simplified-operator.cc", | 573 "src/compiler/simplified-operator.cc", |
574 "src/compiler/simplified-operator.h", | 574 "src/compiler/simplified-operator.h", |
575 "src/compiler/source-position.cc", | 575 "src/compiler/source-position.cc", |
576 "src/compiler/source-position.h", | 576 "src/compiler/source-position.h", |
577 "src/compiler/typer.cc", | 577 "src/compiler/typer.cc", |
578 "src/compiler/typer.h", | 578 "src/compiler/typer.h", |
579 "src/compiler/value-numbering-reducer.cc", | 579 "src/compiler/value-numbering-reducer.cc", |
580 "src/compiler/value-numbering-reducer.h", | 580 "src/compiler/value-numbering-reducer.h", |
581 "src/compiler/verifier.cc", | 581 "src/compiler/verifier.cc", |
582 "src/compiler/verifier.h", | 582 "src/compiler/verifier.h", |
| 583 'src/compiler/zone-pool.cc', |
| 584 'src/compiler/zone-pool.h', |
583 "src/compiler.cc", | 585 "src/compiler.cc", |
584 "src/compiler.h", | 586 "src/compiler.h", |
585 "src/contexts.cc", | 587 "src/contexts.cc", |
586 "src/contexts.h", | 588 "src/contexts.h", |
587 "src/conversions-inl.h", | 589 "src/conversions-inl.h", |
588 "src/conversions.cc", | 590 "src/conversions.cc", |
589 "src/conversions.h", | 591 "src/conversions.h", |
590 "src/counters.cc", | 592 "src/counters.cc", |
591 "src/counters.h", | 593 "src/counters.h", |
592 "src/cpu-profiler-inl.h", | 594 "src/cpu-profiler-inl.h", |
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1438 deps = [ | 1440 deps = [ |
1439 ":v8_base", | 1441 ":v8_base", |
1440 ":v8_nosnapshot", | 1442 ":v8_nosnapshot", |
1441 ] | 1443 ] |
1442 } | 1444 } |
1443 | 1445 |
1444 direct_dependent_configs = [ ":external_config" ] | 1446 direct_dependent_configs = [ ":external_config" ] |
1445 } | 1447 } |
1446 | 1448 |
1447 } | 1449 } |
OLD | NEW |