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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
685 "src/compiler/access-builder.cc", | 685 "src/compiler/access-builder.cc", |
686 "src/compiler/access-builder.h", | 686 "src/compiler/access-builder.h", |
687 "src/compiler/all-nodes.cc", | 687 "src/compiler/all-nodes.cc", |
688 "src/compiler/all-nodes.h", | 688 "src/compiler/all-nodes.h", |
689 "src/compiler/ast-graph-builder.cc", | 689 "src/compiler/ast-graph-builder.cc", |
690 "src/compiler/ast-graph-builder.h", | 690 "src/compiler/ast-graph-builder.h", |
691 "src/compiler/ast-loop-assignment-analyzer.cc", | 691 "src/compiler/ast-loop-assignment-analyzer.cc", |
692 "src/compiler/ast-loop-assignment-analyzer.h", | 692 "src/compiler/ast-loop-assignment-analyzer.h", |
693 "src/compiler/basic-block-instrumentor.cc", | 693 "src/compiler/basic-block-instrumentor.cc", |
694 "src/compiler/basic-block-instrumentor.h", | 694 "src/compiler/basic-block-instrumentor.h", |
| 695 "src/compiler/branch-elimination.cc", |
| 696 "src/compiler/branch-elimination.h", |
695 "src/compiler/bytecode-graph-builder.cc", | 697 "src/compiler/bytecode-graph-builder.cc", |
696 "src/compiler/bytecode-graph-builder.h", | 698 "src/compiler/bytecode-graph-builder.h", |
697 "src/compiler/change-lowering.cc", | 699 "src/compiler/change-lowering.cc", |
698 "src/compiler/change-lowering.h", | 700 "src/compiler/change-lowering.h", |
699 "src/compiler/c-linkage.cc", | 701 "src/compiler/c-linkage.cc", |
700 "src/compiler/coalesced-live-ranges.cc", | 702 "src/compiler/coalesced-live-ranges.cc", |
701 "src/compiler/coalesced-live-ranges.h", | 703 "src/compiler/coalesced-live-ranges.h", |
702 "src/compiler/code-generator-impl.h", | 704 "src/compiler/code-generator-impl.h", |
703 "src/compiler/code-generator.cc", | 705 "src/compiler/code-generator.cc", |
704 "src/compiler/code-generator.h", | 706 "src/compiler/code-generator.h", |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1824 if (!is_component_build) { | 1826 if (!is_component_build) { |
1825 sources += [ | 1827 sources += [ |
1826 "$target_gen_dir/d8-js.cc", | 1828 "$target_gen_dir/d8-js.cc", |
1827 ] | 1829 ] |
1828 } | 1830 } |
1829 if (v8_enable_i18n_support) { | 1831 if (v8_enable_i18n_support) { |
1830 deps += [ "//third_party/icu" ] | 1832 deps += [ "//third_party/icu" ] |
1831 } | 1833 } |
1832 } | 1834 } |
1833 } | 1835 } |
OLD | NEW |