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 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 "src/flag-definitions.h", | 536 "src/flag-definitions.h", |
537 "src/flags.cc", | 537 "src/flags.cc", |
538 "src/flags.h", | 538 "src/flags.h", |
539 "src/frames-inl.h", | 539 "src/frames-inl.h", |
540 "src/frames.cc", | 540 "src/frames.cc", |
541 "src/frames.h", | 541 "src/frames.h", |
542 "src/full-codegen.cc", | 542 "src/full-codegen.cc", |
543 "src/full-codegen.h", | 543 "src/full-codegen.h", |
544 "src/func-name-inferrer.cc", | 544 "src/func-name-inferrer.cc", |
545 "src/func-name-inferrer.h", | 545 "src/func-name-inferrer.h", |
| 546 "src/gc-tracer.cc", |
| 547 "src/gc-tracer.h", |
546 "src/gdb-jit.cc", | 548 "src/gdb-jit.cc", |
547 "src/gdb-jit.h", | 549 "src/gdb-jit.h", |
548 "src/global-handles.cc", | 550 "src/global-handles.cc", |
549 "src/global-handles.h", | 551 "src/global-handles.h", |
550 "src/globals.h", | 552 "src/globals.h", |
551 "src/handles-inl.h", | 553 "src/handles-inl.h", |
552 "src/handles.cc", | 554 "src/handles.cc", |
553 "src/handles.h", | 555 "src/handles.h", |
554 "src/hashmap.h", | 556 "src/hashmap.h", |
555 "src/heap-inl.h", | 557 "src/heap-inl.h", |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1176 deps = [ | 1178 deps = [ |
1177 ":v8_base", | 1179 ":v8_base", |
1178 ":v8_nosnapshot", | 1180 ":v8_nosnapshot", |
1179 ] | 1181 ] |
1180 } | 1182 } |
1181 | 1183 |
1182 direct_dependent_configs = [ ":external_config" ] | 1184 direct_dependent_configs = [ ":external_config" ] |
1183 } | 1185 } |
1184 | 1186 |
1185 } | 1187 } |
OLD | NEW |