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 840 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
851 "src/compiler/pipeline.cc", | 851 "src/compiler/pipeline.cc", |
852 "src/compiler/pipeline.h", | 852 "src/compiler/pipeline.h", |
853 "src/compiler/pipeline-statistics.cc", | 853 "src/compiler/pipeline-statistics.cc", |
854 "src/compiler/pipeline-statistics.h", | 854 "src/compiler/pipeline-statistics.h", |
855 "src/compiler/raw-machine-assembler.cc", | 855 "src/compiler/raw-machine-assembler.cc", |
856 "src/compiler/raw-machine-assembler.h", | 856 "src/compiler/raw-machine-assembler.h", |
857 "src/compiler/register-allocator.cc", | 857 "src/compiler/register-allocator.cc", |
858 "src/compiler/register-allocator.h", | 858 "src/compiler/register-allocator.h", |
859 "src/compiler/register-allocator-verifier.cc", | 859 "src/compiler/register-allocator-verifier.cc", |
860 "src/compiler/register-allocator-verifier.h", | 860 "src/compiler/register-allocator-verifier.h", |
| 861 "src/compiler/representation-change.cc", |
861 "src/compiler/representation-change.h", | 862 "src/compiler/representation-change.h", |
862 "src/compiler/schedule.cc", | 863 "src/compiler/schedule.cc", |
863 "src/compiler/schedule.h", | 864 "src/compiler/schedule.h", |
864 "src/compiler/scheduler.cc", | 865 "src/compiler/scheduler.cc", |
865 "src/compiler/scheduler.h", | 866 "src/compiler/scheduler.h", |
866 "src/compiler/select-lowering.cc", | 867 "src/compiler/select-lowering.cc", |
867 "src/compiler/select-lowering.h", | 868 "src/compiler/select-lowering.h", |
868 "src/compiler/simplified-lowering.cc", | 869 "src/compiler/simplified-lowering.cc", |
869 "src/compiler/simplified-lowering.h", | 870 "src/compiler/simplified-lowering.h", |
870 "src/compiler/simplified-operator-reducer.cc", | 871 "src/compiler/simplified-operator-reducer.cc", |
(...skipping 998 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1869 if (!is_component_build) { | 1870 if (!is_component_build) { |
1870 sources += [ | 1871 sources += [ |
1871 "$target_gen_dir/d8-js.cc", | 1872 "$target_gen_dir/d8-js.cc", |
1872 ] | 1873 ] |
1873 } | 1874 } |
1874 if (v8_enable_i18n_support) { | 1875 if (v8_enable_i18n_support) { |
1875 deps += [ "//third_party/icu" ] | 1876 deps += [ "//third_party/icu" ] |
1876 } | 1877 } |
1877 } | 1878 } |
1878 } | 1879 } |
OLD | NEW |