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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 "src/assert-scope.h", | 433 "src/assert-scope.h", |
434 "src/assert-scope.cc", | 434 "src/assert-scope.cc", |
435 "src/ast-value-factory.cc", | 435 "src/ast-value-factory.cc", |
436 "src/ast-value-factory.h", | 436 "src/ast-value-factory.h", |
437 "src/ast.cc", | 437 "src/ast.cc", |
438 "src/ast.h", | 438 "src/ast.h", |
439 "src/background-parsing-task.cc", | 439 "src/background-parsing-task.cc", |
440 "src/background-parsing-task.h", | 440 "src/background-parsing-task.h", |
441 "src/bailout-reason.cc", | 441 "src/bailout-reason.cc", |
442 "src/bailout-reason.h", | 442 "src/bailout-reason.h", |
| 443 "src/basic-block-profiler.cc", |
| 444 "src/basic-block-profiler.h", |
443 "src/bignum-dtoa.cc", | 445 "src/bignum-dtoa.cc", |
444 "src/bignum-dtoa.h", | 446 "src/bignum-dtoa.h", |
445 "src/bignum.cc", | 447 "src/bignum.cc", |
446 "src/bignum.h", | 448 "src/bignum.h", |
447 "src/bootstrapper.cc", | 449 "src/bootstrapper.cc", |
448 "src/bootstrapper.h", | 450 "src/bootstrapper.h", |
449 "src/builtins.cc", | 451 "src/builtins.cc", |
450 "src/builtins.h", | 452 "src/builtins.h", |
451 "src/bytecodes-irregexp.h", | 453 "src/bytecodes-irregexp.h", |
452 "src/cached-powers.cc", | 454 "src/cached-powers.cc", |
(...skipping 11 matching lines...) Expand all Loading... |
464 "src/code-stubs-hydrogen.cc", | 466 "src/code-stubs-hydrogen.cc", |
465 "src/code.h", | 467 "src/code.h", |
466 "src/codegen.cc", | 468 "src/codegen.cc", |
467 "src/codegen.h", | 469 "src/codegen.h", |
468 "src/compilation-cache.cc", | 470 "src/compilation-cache.cc", |
469 "src/compilation-cache.h", | 471 "src/compilation-cache.h", |
470 "src/compiler/access-builder.cc", | 472 "src/compiler/access-builder.cc", |
471 "src/compiler/access-builder.h", | 473 "src/compiler/access-builder.h", |
472 "src/compiler/ast-graph-builder.cc", | 474 "src/compiler/ast-graph-builder.cc", |
473 "src/compiler/ast-graph-builder.h", | 475 "src/compiler/ast-graph-builder.h", |
| 476 "src/compiler/basic-block-instrumentor.cc", |
| 477 "src/compiler/basic-block-instrumentor.h", |
474 "src/compiler/change-lowering.cc", | 478 "src/compiler/change-lowering.cc", |
475 "src/compiler/change-lowering.h", | 479 "src/compiler/change-lowering.h", |
476 "src/compiler/code-generator-impl.h", | 480 "src/compiler/code-generator-impl.h", |
477 "src/compiler/code-generator.cc", | 481 "src/compiler/code-generator.cc", |
478 "src/compiler/code-generator.h", | 482 "src/compiler/code-generator.h", |
479 "src/compiler/common-node-cache.h", | 483 "src/compiler/common-node-cache.h", |
480 "src/compiler/common-operator.cc", | 484 "src/compiler/common-operator.cc", |
481 "src/compiler/common-operator.h", | 485 "src/compiler/common-operator.h", |
482 "src/compiler/control-builders.cc", | 486 "src/compiler/control-builders.cc", |
483 "src/compiler/control-builders.h", | 487 "src/compiler/control-builders.h", |
(...skipping 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1392 deps = [ | 1396 deps = [ |
1393 ":v8_base", | 1397 ":v8_base", |
1394 ":v8_nosnapshot", | 1398 ":v8_nosnapshot", |
1395 ] | 1399 ] |
1396 } | 1400 } |
1397 | 1401 |
1398 direct_dependent_configs = [ ":external_config" ] | 1402 direct_dependent_configs = [ ":external_config" ] |
1399 } | 1403 } |
1400 | 1404 |
1401 } | 1405 } |
OLD | NEW |