| 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 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 916 "src/crankshaft/compilation-phase.cc", |
| 917 "src/crankshaft/compilation-phase.h", | 917 "src/crankshaft/compilation-phase.h", |
| 918 "src/crankshaft/hydrogen-alias-analysis.h", | 918 "src/crankshaft/hydrogen-alias-analysis.h", |
| 919 "src/crankshaft/hydrogen-bce.cc", | 919 "src/crankshaft/hydrogen-bce.cc", |
| 920 "src/crankshaft/hydrogen-bce.h", | 920 "src/crankshaft/hydrogen-bce.h", |
| 921 "src/crankshaft/hydrogen-bch.cc", | |
| 922 "src/crankshaft/hydrogen-bch.h", | |
| 923 "src/crankshaft/hydrogen-canonicalize.cc", | 921 "src/crankshaft/hydrogen-canonicalize.cc", |
| 924 "src/crankshaft/hydrogen-canonicalize.h", | 922 "src/crankshaft/hydrogen-canonicalize.h", |
| 925 "src/crankshaft/hydrogen-check-elimination.cc", | 923 "src/crankshaft/hydrogen-check-elimination.cc", |
| 926 "src/crankshaft/hydrogen-check-elimination.h", | 924 "src/crankshaft/hydrogen-check-elimination.h", |
| 927 "src/crankshaft/hydrogen-dce.cc", | 925 "src/crankshaft/hydrogen-dce.cc", |
| 928 "src/crankshaft/hydrogen-dce.h", | 926 "src/crankshaft/hydrogen-dce.h", |
| 929 "src/crankshaft/hydrogen-dehoist.cc", | 927 "src/crankshaft/hydrogen-dehoist.cc", |
| 930 "src/crankshaft/hydrogen-dehoist.h", | 928 "src/crankshaft/hydrogen-dehoist.h", |
| 931 "src/crankshaft/hydrogen-environment-liveness.cc", | 929 "src/crankshaft/hydrogen-environment-liveness.cc", |
| 932 "src/crankshaft/hydrogen-environment-liveness.h", | 930 "src/crankshaft/hydrogen-environment-liveness.h", |
| (...skipping 1163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2096 | 2094 |
| 2097 configs -= [ "//build/config/compiler:chromium_code" ] | 2095 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2098 configs += [ "//build/config/compiler:no_chromium_code" ] | 2096 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2099 configs += [ | 2097 configs += [ |
| 2100 ":internal_config", | 2098 ":internal_config", |
| 2101 ":libplatform_config", | 2099 ":libplatform_config", |
| 2102 ":features", | 2100 ":features", |
| 2103 ":toolchain", | 2101 ":toolchain", |
| 2104 ] | 2102 ] |
| 2105 } | 2103 } |
| OLD | NEW |