| 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 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 723 "src/i18n.h", | 723 "src/i18n.h", |
| 724 "src/icu_util.cc", | 724 "src/icu_util.cc", |
| 725 "src/icu_util.h", | 725 "src/icu_util.h", |
| 726 "src/ic/access-compiler.cc", | 726 "src/ic/access-compiler.cc", |
| 727 "src/ic/access-compiler.h", | 727 "src/ic/access-compiler.h", |
| 728 "src/ic/call-optimization.cc", | 728 "src/ic/call-optimization.cc", |
| 729 "src/ic/call-optimization.h", | 729 "src/ic/call-optimization.h", |
| 730 "src/ic/handler-compiler.cc", | 730 "src/ic/handler-compiler.cc", |
| 731 "src/ic/handler-compiler.h", | 731 "src/ic/handler-compiler.h", |
| 732 "src/ic/ic-inl.h", | 732 "src/ic/ic-inl.h", |
| 733 "src/ic/ic-state.cc", |
| 734 "src/ic/ic-state.h", |
| 733 "src/ic/ic.cc", | 735 "src/ic/ic.cc", |
| 734 "src/ic/ic.h", | 736 "src/ic/ic.h", |
| 735 "src/ic/ic-compiler.cc", | 737 "src/ic/ic-compiler.cc", |
| 736 "src/ic/ic-compiler.h", | 738 "src/ic/ic-compiler.h", |
| 737 "src/ic/stub-cache.cc", | 739 "src/ic/stub-cache.cc", |
| 738 "src/ic/stub-cache.h", | 740 "src/ic/stub-cache.h", |
| 739 "src/interface.cc", | 741 "src/interface.cc", |
| 740 "src/interface.h", | 742 "src/interface.h", |
| 741 "src/interface-descriptors.cc", | 743 "src/interface-descriptors.cc", |
| 742 "src/interface-descriptors.h", | 744 "src/interface-descriptors.h", |
| (...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1382 deps = [ | 1384 deps = [ |
| 1383 ":v8_base", | 1385 ":v8_base", |
| 1384 ":v8_nosnapshot", | 1386 ":v8_nosnapshot", |
| 1385 ] | 1387 ] |
| 1386 } | 1388 } |
| 1387 | 1389 |
| 1388 direct_dependent_configs = [ ":external_config" ] | 1390 direct_dependent_configs = [ ":external_config" ] |
| 1389 } | 1391 } |
| 1390 | 1392 |
| 1391 } | 1393 } |
| OLD | NEW |