| 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 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 "src/runtime/runtime-regexp.cc", | 868 "src/runtime/runtime-regexp.cc", |
| 869 "src/runtime/runtime-scopes.cc", | 869 "src/runtime/runtime-scopes.cc", |
| 870 "src/runtime/runtime-strings.cc", | 870 "src/runtime/runtime-strings.cc", |
| 871 "src/runtime/runtime-symbol.cc", | 871 "src/runtime/runtime-symbol.cc", |
| 872 "src/runtime/runtime-test.cc", | 872 "src/runtime/runtime-test.cc", |
| 873 "src/runtime/runtime-typedarray.cc", | 873 "src/runtime/runtime-typedarray.cc", |
| 874 "src/runtime/runtime-uri.cc", | 874 "src/runtime/runtime-uri.cc", |
| 875 "src/runtime/runtime-utils.h", | 875 "src/runtime/runtime-utils.h", |
| 876 "src/runtime/runtime.cc", | 876 "src/runtime/runtime.cc", |
| 877 "src/runtime/runtime.h", | 877 "src/runtime/runtime.h", |
| 878 "src/runtime/string-builder.h", | |
| 879 "src/safepoint-table.cc", | 878 "src/safepoint-table.cc", |
| 880 "src/safepoint-table.h", | 879 "src/safepoint-table.h", |
| 881 "src/sampler.cc", | 880 "src/sampler.cc", |
| 882 "src/sampler.h", | 881 "src/sampler.h", |
| 883 "src/scanner-character-streams.cc", | 882 "src/scanner-character-streams.cc", |
| 884 "src/scanner-character-streams.h", | 883 "src/scanner-character-streams.h", |
| 885 "src/scanner.cc", | 884 "src/scanner.cc", |
| 886 "src/scanner.h", | 885 "src/scanner.h", |
| 887 "src/scopeinfo.cc", | 886 "src/scopeinfo.cc", |
| 888 "src/scopeinfo.h", | 887 "src/scopeinfo.h", |
| 889 "src/scopes.cc", | 888 "src/scopes.cc", |
| 890 "src/scopes.h", | 889 "src/scopes.h", |
| 891 "src/serialize.cc", | 890 "src/serialize.cc", |
| 892 "src/serialize.h", | 891 "src/serialize.h", |
| 893 "src/small-pointer-list.h", | 892 "src/small-pointer-list.h", |
| 894 "src/smart-pointers.h", | 893 "src/smart-pointers.h", |
| 895 "src/snapshot-source-sink.cc", | 894 "src/snapshot-source-sink.cc", |
| 896 "src/snapshot-source-sink.h", | 895 "src/snapshot-source-sink.h", |
| 897 "src/snapshot.h", | 896 "src/snapshot.h", |
| 897 "src/string-builder.h", |
| 898 "src/string-builder.c", |
| 898 "src/string-search.cc", | 899 "src/string-search.cc", |
| 899 "src/string-search.h", | 900 "src/string-search.h", |
| 900 "src/string-stream.cc", | 901 "src/string-stream.cc", |
| 901 "src/string-stream.h", | 902 "src/string-stream.h", |
| 902 "src/strtod.cc", | 903 "src/strtod.cc", |
| 903 "src/strtod.h", | 904 "src/strtod.h", |
| 904 "src/token.cc", | 905 "src/token.cc", |
| 905 "src/token.h", | 906 "src/token.h", |
| 906 "src/transitions-inl.h", | 907 "src/transitions-inl.h", |
| 907 "src/transitions.cc", | 908 "src/transitions.cc", |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1454 deps = [ | 1455 deps = [ |
| 1455 ":v8_base", | 1456 ":v8_base", |
| 1456 ":v8_nosnapshot", | 1457 ":v8_nosnapshot", |
| 1457 ] | 1458 ] |
| 1458 } | 1459 } |
| 1459 | 1460 |
| 1460 direct_dependent_configs = [ ":external_config" ] | 1461 direct_dependent_configs = [ ":external_config" ] |
| 1461 } | 1462 } |
| 1462 | 1463 |
| 1463 } | 1464 } |
| OLD | NEW |