| 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 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 "src/context-measure.cc", | 906 "src/context-measure.cc", |
| 907 "src/context-measure.h", | 907 "src/context-measure.h", |
| 908 "src/contexts-inl.h", | 908 "src/contexts-inl.h", |
| 909 "src/contexts.cc", | 909 "src/contexts.cc", |
| 910 "src/contexts.h", | 910 "src/contexts.h", |
| 911 "src/conversions-inl.h", | 911 "src/conversions-inl.h", |
| 912 "src/conversions.cc", | 912 "src/conversions.cc", |
| 913 "src/conversions.h", | 913 "src/conversions.h", |
| 914 "src/counters.cc", | 914 "src/counters.cc", |
| 915 "src/counters.h", | 915 "src/counters.h", |
| 916 "src/crankshaft/compilation-phase.cc", |
| 917 "src/crankshaft/compilation-phase.h", |
| 916 "src/crankshaft/hydrogen-alias-analysis.h", | 918 "src/crankshaft/hydrogen-alias-analysis.h", |
| 917 "src/crankshaft/hydrogen-bce.cc", | 919 "src/crankshaft/hydrogen-bce.cc", |
| 918 "src/crankshaft/hydrogen-bce.h", | 920 "src/crankshaft/hydrogen-bce.h", |
| 919 "src/crankshaft/hydrogen-bch.cc", | 921 "src/crankshaft/hydrogen-bch.cc", |
| 920 "src/crankshaft/hydrogen-bch.h", | 922 "src/crankshaft/hydrogen-bch.h", |
| 921 "src/crankshaft/hydrogen-canonicalize.cc", | 923 "src/crankshaft/hydrogen-canonicalize.cc", |
| 922 "src/crankshaft/hydrogen-canonicalize.h", | 924 "src/crankshaft/hydrogen-canonicalize.h", |
| 923 "src/crankshaft/hydrogen-check-elimination.cc", | 925 "src/crankshaft/hydrogen-check-elimination.cc", |
| 924 "src/crankshaft/hydrogen-check-elimination.h", | 926 "src/crankshaft/hydrogen-check-elimination.h", |
| 925 "src/crankshaft/hydrogen-dce.cc", | 927 "src/crankshaft/hydrogen-dce.cc", |
| (...skipping 1149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2075 | 2077 |
| 2076 configs -= [ "//build/config/compiler:chromium_code" ] | 2078 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2077 configs += [ "//build/config/compiler:no_chromium_code" ] | 2079 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2078 configs += [ | 2080 configs += [ |
| 2079 ":internal_config", | 2081 ":internal_config", |
| 2080 ":libplatform_config", | 2082 ":libplatform_config", |
| 2081 ":features", | 2083 ":features", |
| 2082 ":toolchain", | 2084 ":toolchain", |
| 2083 ] | 2085 ] |
| 2084 } | 2086 } |
| OLD | NEW |