| 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 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1434 "src/type-cache.h", | 1434 "src/type-cache.h", |
| 1435 "src/type-feedback-vector-inl.h", | 1435 "src/type-feedback-vector-inl.h", |
| 1436 "src/type-feedback-vector.cc", | 1436 "src/type-feedback-vector.cc", |
| 1437 "src/type-feedback-vector.h", | 1437 "src/type-feedback-vector.h", |
| 1438 "src/type-info.cc", | 1438 "src/type-info.cc", |
| 1439 "src/type-info.h", | 1439 "src/type-info.h", |
| 1440 "src/types.cc", | 1440 "src/types.cc", |
| 1441 "src/types.h", | 1441 "src/types.h", |
| 1442 "src/typing-asm.cc", | 1442 "src/typing-asm.cc", |
| 1443 "src/typing-asm.h", | 1443 "src/typing-asm.h", |
| 1444 "src/typing-reset.cc", | |
| 1445 "src/typing-reset.h", | |
| 1446 "src/unicode-cache-inl.h", | 1444 "src/unicode-cache-inl.h", |
| 1447 "src/unicode-cache.h", | 1445 "src/unicode-cache.h", |
| 1448 "src/unicode-decoder.cc", | 1446 "src/unicode-decoder.cc", |
| 1449 "src/unicode-decoder.h", | 1447 "src/unicode-decoder.h", |
| 1450 "src/unicode-inl.h", | 1448 "src/unicode-inl.h", |
| 1451 "src/unicode.cc", | 1449 "src/unicode.cc", |
| 1452 "src/unicode.h", | 1450 "src/unicode.h", |
| 1453 "src/utils-inl.h", | 1451 "src/utils-inl.h", |
| 1454 "src/utils.cc", | 1452 "src/utils.cc", |
| 1455 "src/utils.h", | 1453 "src/utils.h", |
| (...skipping 758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2214 | 2212 |
| 2215 configs -= [ "//build/config/compiler:chromium_code" ] | 2213 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2216 configs += [ "//build/config/compiler:no_chromium_code" ] | 2214 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2217 configs += [ | 2215 configs += [ |
| 2218 ":internal_config", | 2216 ":internal_config", |
| 2219 ":libplatform_config", | 2217 ":libplatform_config", |
| 2220 ":features", | 2218 ":features", |
| 2221 ":toolchain", | 2219 ":toolchain", |
| 2222 ] | 2220 ] |
| 2223 } | 2221 } |
| OLD | NEW |