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 if (is_android) { | 10 if (is_android) { |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 "src/compiler/access-info.cc", | 716 "src/compiler/access-info.cc", |
717 "src/compiler/access-info.h", | 717 "src/compiler/access-info.h", |
718 "src/compiler/all-nodes.cc", | 718 "src/compiler/all-nodes.cc", |
719 "src/compiler/all-nodes.h", | 719 "src/compiler/all-nodes.h", |
720 "src/compiler/ast-graph-builder.cc", | 720 "src/compiler/ast-graph-builder.cc", |
721 "src/compiler/ast-graph-builder.h", | 721 "src/compiler/ast-graph-builder.h", |
722 "src/compiler/ast-loop-assignment-analyzer.cc", | 722 "src/compiler/ast-loop-assignment-analyzer.cc", |
723 "src/compiler/ast-loop-assignment-analyzer.h", | 723 "src/compiler/ast-loop-assignment-analyzer.h", |
724 "src/compiler/basic-block-instrumentor.cc", | 724 "src/compiler/basic-block-instrumentor.cc", |
725 "src/compiler/basic-block-instrumentor.h", | 725 "src/compiler/basic-block-instrumentor.h", |
| 726 "src/compiler/binary-operator-reducer.cc", |
| 727 "src/compiler/binary-operator-reducer.h", |
726 "src/compiler/branch-elimination.cc", | 728 "src/compiler/branch-elimination.cc", |
727 "src/compiler/branch-elimination.h", | 729 "src/compiler/branch-elimination.h", |
728 "src/compiler/bytecode-graph-builder.cc", | 730 "src/compiler/bytecode-graph-builder.cc", |
729 "src/compiler/bytecode-graph-builder.h", | 731 "src/compiler/bytecode-graph-builder.h", |
730 "src/compiler/change-lowering.cc", | 732 "src/compiler/change-lowering.cc", |
731 "src/compiler/change-lowering.h", | 733 "src/compiler/change-lowering.h", |
732 "src/compiler/c-linkage.cc", | 734 "src/compiler/c-linkage.cc", |
733 "src/compiler/coalesced-live-ranges.cc", | 735 "src/compiler/coalesced-live-ranges.cc", |
734 "src/compiler/coalesced-live-ranges.h", | 736 "src/compiler/coalesced-live-ranges.h", |
735 "src/compiler/code-generator-impl.h", | 737 "src/compiler/code-generator-impl.h", |
(...skipping 1131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1867 if (!is_component_build) { | 1869 if (!is_component_build) { |
1868 sources += [ | 1870 sources += [ |
1869 "$target_gen_dir/d8-js.cc", | 1871 "$target_gen_dir/d8-js.cc", |
1870 ] | 1872 ] |
1871 } | 1873 } |
1872 if (v8_enable_i18n_support) { | 1874 if (v8_enable_i18n_support) { |
1873 deps += [ "//third_party/icu" ] | 1875 deps += [ "//third_party/icu" ] |
1874 } | 1876 } |
1875 } | 1877 } |
1876 } | 1878 } |
OLD | NEW |