| 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 434 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 "src/builtins.h", | 445 "src/builtins.h", |
| 446 "src/bytecodes-irregexp.h", | 446 "src/bytecodes-irregexp.h", |
| 447 "src/cached-powers.cc", | 447 "src/cached-powers.cc", |
| 448 "src/cached-powers.h", | 448 "src/cached-powers.h", |
| 449 "src/char-predicates-inl.h", | 449 "src/char-predicates-inl.h", |
| 450 "src/char-predicates.h", | 450 "src/char-predicates.h", |
| 451 "src/checks.cc", | 451 "src/checks.cc", |
| 452 "src/checks.h", | 452 "src/checks.h", |
| 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-factory.cc", |
| 456 "src/code-factory.h", |
| 455 "src/code-stubs.cc", | 457 "src/code-stubs.cc", |
| 456 "src/code-stubs.h", | 458 "src/code-stubs.h", |
| 457 "src/code-stubs-hydrogen.cc", | 459 "src/code-stubs-hydrogen.cc", |
| 458 "src/code.h", | 460 "src/code.h", |
| 459 "src/codegen.cc", | 461 "src/codegen.cc", |
| 460 "src/codegen.h", | 462 "src/codegen.h", |
| 461 "src/compilation-cache.cc", | 463 "src/compilation-cache.cc", |
| 462 "src/compilation-cache.h", | 464 "src/compilation-cache.h", |
| 463 "src/compiler/access-builder.cc", | 465 "src/compiler/access-builder.cc", |
| 464 "src/compiler/access-builder.h", | 466 "src/compiler/access-builder.h", |
| (...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 deps = [ | 1363 deps = [ |
| 1362 ":v8_base", | 1364 ":v8_base", |
| 1363 ":v8_nosnapshot", | 1365 ":v8_nosnapshot", |
| 1364 ] | 1366 ] |
| 1365 } | 1367 } |
| 1366 | 1368 |
| 1367 direct_dependent_configs = [ ":external_config" ] | 1369 direct_dependent_configs = [ ":external_config" ] |
| 1368 } | 1370 } |
| 1369 | 1371 |
| 1370 } | 1372 } |
| OLD | NEW |