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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
8 | 8 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 10 # Chromium build. |
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
587 "src/compiler/js-intrinsic-lowering.h", | 587 "src/compiler/js-intrinsic-lowering.h", |
588 "src/compiler/js-operator.cc", | 588 "src/compiler/js-operator.cc", |
589 "src/compiler/js-operator.h", | 589 "src/compiler/js-operator.h", |
590 "src/compiler/js-typed-lowering.cc", | 590 "src/compiler/js-typed-lowering.cc", |
591 "src/compiler/js-typed-lowering.h", | 591 "src/compiler/js-typed-lowering.h", |
592 "src/compiler/jump-threading.cc", | 592 "src/compiler/jump-threading.cc", |
593 "src/compiler/jump-threading.h", | 593 "src/compiler/jump-threading.h", |
594 "src/compiler/linkage-impl.h", | 594 "src/compiler/linkage-impl.h", |
595 "src/compiler/linkage.cc", | 595 "src/compiler/linkage.cc", |
596 "src/compiler/linkage.h", | 596 "src/compiler/linkage.h", |
| 597 "src/compiler/liveness-analyzer.cc", |
| 598 "src/compiler/liveness-analyzer.h", |
597 "src/compiler/load-elimination.cc", | 599 "src/compiler/load-elimination.cc", |
598 "src/compiler/load-elimination.h", | 600 "src/compiler/load-elimination.h", |
599 "src/compiler/loop-peeling.cc", | 601 "src/compiler/loop-peeling.cc", |
600 "src/compiler/loop-analysis.cc", | 602 "src/compiler/loop-analysis.cc", |
601 "src/compiler/loop-analysis.h", | 603 "src/compiler/loop-analysis.h", |
602 "src/compiler/machine-operator-reducer.cc", | 604 "src/compiler/machine-operator-reducer.cc", |
603 "src/compiler/machine-operator-reducer.h", | 605 "src/compiler/machine-operator-reducer.h", |
604 "src/compiler/machine-operator.cc", | 606 "src/compiler/machine-operator.cc", |
605 "src/compiler/machine-operator.h", | 607 "src/compiler/machine-operator.h", |
606 "src/compiler/machine-type.cc", | 608 "src/compiler/machine-type.cc", |
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1582 sources += [ | 1584 sources += [ |
1583 "src/d8-debug.cc", | 1585 "src/d8-debug.cc", |
1584 "$target_gen_dir/d8-js.cc", | 1586 "$target_gen_dir/d8-js.cc", |
1585 ] | 1587 ] |
1586 } | 1588 } |
1587 if (v8_enable_i18n_support) { | 1589 if (v8_enable_i18n_support) { |
1588 deps += [ "//third_party/icu" ] | 1590 deps += [ "//third_party/icu" ] |
1589 } | 1591 } |
1590 } | 1592 } |
1591 } | 1593 } |
OLD | NEW |