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 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 "src/circular-queue-inl.h", | 453 "src/circular-queue-inl.h", |
454 "src/circular-queue.h", | 454 "src/circular-queue.h", |
455 "src/code-stubs.cc", | 455 "src/code-stubs.cc", |
456 "src/code-stubs.h", | 456 "src/code-stubs.h", |
457 "src/code-stubs-hydrogen.cc", | 457 "src/code-stubs-hydrogen.cc", |
458 "src/code.h", | 458 "src/code.h", |
459 "src/codegen.cc", | 459 "src/codegen.cc", |
460 "src/codegen.h", | 460 "src/codegen.h", |
461 "src/compilation-cache.cc", | 461 "src/compilation-cache.cc", |
462 "src/compilation-cache.h", | 462 "src/compilation-cache.h", |
| 463 "src/compiler/access-builder.h", |
463 "src/compiler/ast-graph-builder.cc", | 464 "src/compiler/ast-graph-builder.cc", |
464 "src/compiler/ast-graph-builder.h", | 465 "src/compiler/ast-graph-builder.h", |
465 "src/compiler/change-lowering.cc", | 466 "src/compiler/change-lowering.cc", |
466 "src/compiler/change-lowering.h", | 467 "src/compiler/change-lowering.h", |
467 "src/compiler/code-generator-impl.h", | 468 "src/compiler/code-generator-impl.h", |
468 "src/compiler/code-generator.cc", | 469 "src/compiler/code-generator.cc", |
469 "src/compiler/code-generator.h", | 470 "src/compiler/code-generator.h", |
470 "src/compiler/common-node-cache.h", | 471 "src/compiler/common-node-cache.h", |
471 "src/compiler/common-operator.h", | 472 "src/compiler/common-operator.h", |
472 "src/compiler/control-builders.cc", | 473 "src/compiler/control-builders.cc", |
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1348 deps = [ | 1349 deps = [ |
1349 ":v8_base", | 1350 ":v8_base", |
1350 ":v8_nosnapshot", | 1351 ":v8_nosnapshot", |
1351 ] | 1352 ] |
1352 } | 1353 } |
1353 | 1354 |
1354 direct_dependent_configs = [ ":external_config" ] | 1355 direct_dependent_configs = [ ":external_config" ] |
1355 } | 1356 } |
1356 | 1357 |
1357 } | 1358 } |
OLD | NEW |