| 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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 840 "src/types.cc", | 840 "src/types.cc", |
| 841 "src/types.h", | 841 "src/types.h", |
| 842 "src/typing.cc", | 842 "src/typing.cc", |
| 843 "src/typing.h", | 843 "src/typing.h", |
| 844 "src/unbound-queue-inl.h", | 844 "src/unbound-queue-inl.h", |
| 845 "src/unbound-queue.h", | 845 "src/unbound-queue.h", |
| 846 "src/unicode-inl.h", | 846 "src/unicode-inl.h", |
| 847 "src/unicode.cc", | 847 "src/unicode.cc", |
| 848 "src/unicode.h", | 848 "src/unicode.h", |
| 849 "src/unique.h", | 849 "src/unique.h", |
| 850 "src/unscopables.h", |
| 850 "src/uri.h", | 851 "src/uri.h", |
| 851 "src/utils-inl.h", | 852 "src/utils-inl.h", |
| 852 "src/utils.cc", | 853 "src/utils.cc", |
| 853 "src/utils.h", | 854 "src/utils.h", |
| 854 "src/v8.cc", | 855 "src/v8.cc", |
| 855 "src/v8.h", | 856 "src/v8.h", |
| 856 "src/v8memory.h", | 857 "src/v8memory.h", |
| 857 "src/v8threads.cc", | 858 "src/v8threads.cc", |
| 858 "src/v8threads.h", | 859 "src/v8threads.h", |
| 859 "src/variables.cc", | 860 "src/variables.cc", |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1285 deps = [ | 1286 deps = [ |
| 1286 ":v8_base", | 1287 ":v8_base", |
| 1287 ":v8_nosnapshot", | 1288 ":v8_nosnapshot", |
| 1288 ] | 1289 ] |
| 1289 } | 1290 } |
| 1290 | 1291 |
| 1291 direct_dependent_configs = [ ":external_config" ] | 1292 direct_dependent_configs = [ ":external_config" ] |
| 1292 } | 1293 } |
| 1293 | 1294 |
| 1294 } | 1295 } |
| OLD | NEW |