| 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 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 "src/hydrogen-redundant-phi.cc", | 455 "src/hydrogen-redundant-phi.cc", |
| 456 "src/hydrogen-redundant-phi.h", | 456 "src/hydrogen-redundant-phi.h", |
| 457 "src/hydrogen-removable-simulates.cc", | 457 "src/hydrogen-removable-simulates.cc", |
| 458 "src/hydrogen-removable-simulates.h", | 458 "src/hydrogen-removable-simulates.h", |
| 459 "src/hydrogen-representation-changes.cc", | 459 "src/hydrogen-representation-changes.cc", |
| 460 "src/hydrogen-representation-changes.h", | 460 "src/hydrogen-representation-changes.h", |
| 461 "src/hydrogen-sce.cc", | 461 "src/hydrogen-sce.cc", |
| 462 "src/hydrogen-sce.h", | 462 "src/hydrogen-sce.h", |
| 463 "src/hydrogen-store-elimination.cc", | 463 "src/hydrogen-store-elimination.cc", |
| 464 "src/hydrogen-store-elimination.h", | 464 "src/hydrogen-store-elimination.h", |
| 465 "src/hydrogen-types.cc", |
| 466 "src/hydrogen-types.h", |
| 465 "src/hydrogen-uint32-analysis.cc", | 467 "src/hydrogen-uint32-analysis.cc", |
| 466 "src/hydrogen-uint32-analysis.h", | 468 "src/hydrogen-uint32-analysis.h", |
| 467 "src/i18n.cc", | 469 "src/i18n.cc", |
| 468 "src/i18n.h", | 470 "src/i18n.h", |
| 469 "src/icu_util.cc", | 471 "src/icu_util.cc", |
| 470 "src/icu_util.h", | 472 "src/icu_util.h", |
| 471 "src/ic-inl.h", | 473 "src/ic-inl.h", |
| 472 "src/ic.cc", | 474 "src/ic.cc", |
| 473 "src/ic.h", | 475 "src/ic.h", |
| 474 "src/incremental-marking.cc", | 476 "src/incremental-marking.cc", |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 | 933 |
| 932 if (v8_compress_startup_data == "bz2") { | 934 if (v8_compress_startup_data == "bz2") { |
| 933 libs = [ "bz2" ] | 935 libs = [ "bz2" ] |
| 934 } | 936 } |
| 935 } | 937 } |
| 936 | 938 |
| 937 } | 939 } |
| 938 | 940 |
| 939 group("v8") { | 941 group("v8") { |
| 940 } | 942 } |
| OLD | NEW |