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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 "src/cached-powers.cc", | 748 "src/cached-powers.cc", |
749 "src/cached-powers.h", | 749 "src/cached-powers.h", |
750 "src/cancelable-task.cc", | 750 "src/cancelable-task.cc", |
751 "src/cancelable-task.h", | 751 "src/cancelable-task.h", |
752 "src/char-predicates-inl.h", | 752 "src/char-predicates-inl.h", |
753 "src/char-predicates.cc", | 753 "src/char-predicates.cc", |
754 "src/char-predicates.h", | 754 "src/char-predicates.h", |
755 "src/checks.h", | 755 "src/checks.h", |
756 "src/code-factory.cc", | 756 "src/code-factory.cc", |
757 "src/code-factory.h", | 757 "src/code-factory.h", |
| 758 "src/code-stub-assembler.cc", |
| 759 "src/code-stub-assembler.h", |
758 "src/code-stubs-hydrogen.cc", | 760 "src/code-stubs-hydrogen.cc", |
759 "src/code-stubs.cc", | 761 "src/code-stubs.cc", |
760 "src/code-stubs.h", | 762 "src/code-stubs.h", |
761 "src/codegen.cc", | 763 "src/codegen.cc", |
762 "src/codegen.h", | 764 "src/codegen.h", |
763 "src/collector.h", | 765 "src/collector.h", |
764 "src/compilation-cache.cc", | 766 "src/compilation-cache.cc", |
765 "src/compilation-cache.h", | 767 "src/compilation-cache.h", |
766 "src/compilation-dependencies.cc", | 768 "src/compilation-dependencies.cc", |
767 "src/compilation-dependencies.h", | 769 "src/compilation-dependencies.h", |
(...skipping 17 matching lines...) Expand all Loading... |
785 "src/compiler/branch-elimination.h", | 787 "src/compiler/branch-elimination.h", |
786 "src/compiler/bytecode-branch-analysis.cc", | 788 "src/compiler/bytecode-branch-analysis.cc", |
787 "src/compiler/bytecode-branch-analysis.h", | 789 "src/compiler/bytecode-branch-analysis.h", |
788 "src/compiler/bytecode-graph-builder.cc", | 790 "src/compiler/bytecode-graph-builder.cc", |
789 "src/compiler/bytecode-graph-builder.h", | 791 "src/compiler/bytecode-graph-builder.h", |
790 "src/compiler/c-linkage.cc", | 792 "src/compiler/c-linkage.cc", |
791 "src/compiler/change-lowering.cc", | 793 "src/compiler/change-lowering.cc", |
792 "src/compiler/change-lowering.h", | 794 "src/compiler/change-lowering.h", |
793 "src/compiler/coalesced-live-ranges.cc", | 795 "src/compiler/coalesced-live-ranges.cc", |
794 "src/compiler/coalesced-live-ranges.h", | 796 "src/compiler/coalesced-live-ranges.h", |
| 797 "src/compiler/code-assembler.cc", |
| 798 "src/compiler/code-assembler.h", |
795 "src/compiler/code-generator-impl.h", | 799 "src/compiler/code-generator-impl.h", |
796 "src/compiler/code-generator.cc", | 800 "src/compiler/code-generator.cc", |
797 "src/compiler/code-generator.h", | 801 "src/compiler/code-generator.h", |
798 "src/compiler/code-stub-assembler.cc", | |
799 "src/compiler/code-stub-assembler.h", | |
800 "src/compiler/common-node-cache.cc", | 802 "src/compiler/common-node-cache.cc", |
801 "src/compiler/common-node-cache.h", | 803 "src/compiler/common-node-cache.h", |
802 "src/compiler/common-operator-reducer.cc", | 804 "src/compiler/common-operator-reducer.cc", |
803 "src/compiler/common-operator-reducer.h", | 805 "src/compiler/common-operator-reducer.h", |
804 "src/compiler/common-operator.cc", | 806 "src/compiler/common-operator.cc", |
805 "src/compiler/common-operator.h", | 807 "src/compiler/common-operator.h", |
806 "src/compiler/control-builders.cc", | 808 "src/compiler/control-builders.cc", |
807 "src/compiler/control-builders.h", | 809 "src/compiler/control-builders.h", |
808 "src/compiler/control-equivalence.cc", | 810 "src/compiler/control-equivalence.cc", |
809 "src/compiler/control-equivalence.h", | 811 "src/compiler/control-equivalence.h", |
(...skipping 1349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2159 | 2161 |
2160 configs -= [ "//build/config/compiler:chromium_code" ] | 2162 configs -= [ "//build/config/compiler:chromium_code" ] |
2161 configs += [ "//build/config/compiler:no_chromium_code" ] | 2163 configs += [ "//build/config/compiler:no_chromium_code" ] |
2162 configs += [ | 2164 configs += [ |
2163 ":internal_config", | 2165 ":internal_config", |
2164 ":libplatform_config", | 2166 ":libplatform_config", |
2165 ":features", | 2167 ":features", |
2166 ":toolchain", | 2168 ":toolchain", |
2167 ] | 2169 ] |
2168 } | 2170 } |
OLD | NEW |