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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
679 "src/compiler/js-graph.cc", | 679 "src/compiler/js-graph.cc", |
680 "src/compiler/js-graph.h", | 680 "src/compiler/js-graph.h", |
681 "src/compiler/js-inlining.cc", | 681 "src/compiler/js-inlining.cc", |
682 "src/compiler/js-inlining.h", | 682 "src/compiler/js-inlining.h", |
683 "src/compiler/js-intrinsic-lowering.cc", | 683 "src/compiler/js-intrinsic-lowering.cc", |
684 "src/compiler/js-intrinsic-lowering.h", | 684 "src/compiler/js-intrinsic-lowering.h", |
685 "src/compiler/js-operator.cc", | 685 "src/compiler/js-operator.cc", |
686 "src/compiler/js-operator.h", | 686 "src/compiler/js-operator.h", |
687 "src/compiler/js-type-feedback.cc", | 687 "src/compiler/js-type-feedback.cc", |
688 "src/compiler/js-type-feedback.h", | 688 "src/compiler/js-type-feedback.h", |
689 "src/compiler/js-type-feedback-lowering.cc", | |
690 "src/compiler/js-type-feedback-lowering.h", | |
691 "src/compiler/js-typed-lowering.cc", | 689 "src/compiler/js-typed-lowering.cc", |
692 "src/compiler/js-typed-lowering.h", | 690 "src/compiler/js-typed-lowering.h", |
693 "src/compiler/jump-threading.cc", | 691 "src/compiler/jump-threading.cc", |
694 "src/compiler/jump-threading.h", | 692 "src/compiler/jump-threading.h", |
695 "src/compiler/linkage-impl.h", | 693 "src/compiler/linkage-impl.h", |
696 "src/compiler/linkage.cc", | 694 "src/compiler/linkage.cc", |
697 "src/compiler/linkage.h", | 695 "src/compiler/linkage.h", |
698 "src/compiler/liveness-analyzer.cc", | 696 "src/compiler/liveness-analyzer.cc", |
699 "src/compiler/liveness-analyzer.h", | 697 "src/compiler/liveness-analyzer.h", |
700 "src/compiler/load-elimination.cc", | 698 "src/compiler/load-elimination.cc", |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1714 "src/d8-debug.cc", | 1712 "src/d8-debug.cc", |
1715 "src/d8-debug.h", | 1713 "src/d8-debug.h", |
1716 "$target_gen_dir/d8-js.cc", | 1714 "$target_gen_dir/d8-js.cc", |
1717 ] | 1715 ] |
1718 } | 1716 } |
1719 if (v8_enable_i18n_support) { | 1717 if (v8_enable_i18n_support) { |
1720 deps += [ "//third_party/icu" ] | 1718 deps += [ "//third_party/icu" ] |
1721 } | 1719 } |
1722 } | 1720 } |
1723 } | 1721 } |
OLD | NEW |