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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 "src/regexp-stack.cc", | 701 "src/regexp-stack.cc", |
702 "src/regexp-stack.h", | 702 "src/regexp-stack.h", |
703 "src/rewriter.cc", | 703 "src/rewriter.cc", |
704 "src/rewriter.h", | 704 "src/rewriter.h", |
705 "src/runtime-profiler.cc", | 705 "src/runtime-profiler.cc", |
706 "src/runtime-profiler.h", | 706 "src/runtime-profiler.h", |
707 "src/runtime.cc", | 707 "src/runtime.cc", |
708 "src/runtime.h", | 708 "src/runtime.h", |
709 "src/safepoint-table.cc", | 709 "src/safepoint-table.cc", |
710 "src/safepoint-table.h", | 710 "src/safepoint-table.h", |
| 711 "src/sampler-thread.cc", |
| 712 "src/sampler-thread.h", |
711 "src/sampler.cc", | 713 "src/sampler.cc", |
712 "src/sampler.h", | 714 "src/sampler.h", |
713 "src/scanner-character-streams.cc", | 715 "src/scanner-character-streams.cc", |
714 "src/scanner-character-streams.h", | 716 "src/scanner-character-streams.h", |
715 "src/scanner.cc", | 717 "src/scanner.cc", |
716 "src/scanner.h", | 718 "src/scanner.h", |
717 "src/scopeinfo.cc", | 719 "src/scopeinfo.cc", |
718 "src/scopeinfo.h", | 720 "src/scopeinfo.h", |
719 "src/scopes.cc", | 721 "src/scopes.cc", |
720 "src/scopes.h", | 722 "src/scopes.h", |
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1160 deps = [ | 1162 deps = [ |
1161 ":v8_base", | 1163 ":v8_base", |
1162 ":v8_nosnapshot", | 1164 ":v8_nosnapshot", |
1163 ] | 1165 ] |
1164 } | 1166 } |
1165 | 1167 |
1166 direct_dependent_configs = [ ":external_config" ] | 1168 direct_dependent_configs = [ ":external_config" ] |
1167 } | 1169 } |
1168 | 1170 |
1169 } | 1171 } |
OLD | NEW |