| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 "src/unicode-inl.h", | 582 "src/unicode-inl.h", |
| 583 "src/unicode.cc", | 583 "src/unicode.cc", |
| 584 "src/unicode.h", | 584 "src/unicode.h", |
| 585 "src/unique.h", | 585 "src/unique.h", |
| 586 "src/uri.h", | 586 "src/uri.h", |
| 587 "src/utils-inl.h", | 587 "src/utils-inl.h", |
| 588 "src/utils.cc", | 588 "src/utils.cc", |
| 589 "src/utils.h", | 589 "src/utils.h", |
| 590 "src/utils/random-number-generator.cc", | 590 "src/utils/random-number-generator.cc", |
| 591 "src/utils/random-number-generator.h", | 591 "src/utils/random-number-generator.h", |
| 592 "src/v8-counters.cc", | |
| 593 "src/v8-counters.h", | |
| 594 "src/v8.cc", | 592 "src/v8.cc", |
| 595 "src/v8.h", | 593 "src/v8.h", |
| 596 "src/v8checks.h", | 594 "src/v8checks.h", |
| 597 "src/v8globals.h", | 595 "src/v8globals.h", |
| 598 "src/v8memory.h", | 596 "src/v8memory.h", |
| 599 "src/v8threads.cc", | 597 "src/v8threads.cc", |
| 600 "src/v8threads.h", | 598 "src/v8threads.h", |
| 601 "src/variables.cc", | 599 "src/variables.cc", |
| 602 "src/variables.h", | 600 "src/variables.h", |
| 603 "src/version.cc", | 601 "src/version.cc", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 ":v8_base", | 864 ":v8_base", |
| 867 ":v8_nosnapshot", | 865 ":v8_nosnapshot", |
| 868 ] | 866 ] |
| 869 | 867 |
| 870 if (v8_compress_startup_data == "bz2") { | 868 if (v8_compress_startup_data == "bz2") { |
| 871 libs = [ "bz2" ] | 869 libs = [ "bz2" ] |
| 872 } | 870 } |
| 873 } | 871 } |
| 874 | 872 |
| 875 } | 873 } |
| OLD | NEW |