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