| 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 1780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1791 "src/base/atomicops_internals_x86_gcc.h", | 1791 "src/base/atomicops_internals_x86_gcc.h", |
| 1792 "src/base/atomicops_internals_x86_msvc.h", | 1792 "src/base/atomicops_internals_x86_msvc.h", |
| 1793 "src/base/bits.cc", | 1793 "src/base/bits.cc", |
| 1794 "src/base/bits.h", | 1794 "src/base/bits.h", |
| 1795 "src/base/build_config.h", | 1795 "src/base/build_config.h", |
| 1796 "src/base/cpu.cc", | 1796 "src/base/cpu.cc", |
| 1797 "src/base/cpu.h", | 1797 "src/base/cpu.h", |
| 1798 "src/base/division-by-constant.cc", | 1798 "src/base/division-by-constant.cc", |
| 1799 "src/base/division-by-constant.h", | 1799 "src/base/division-by-constant.h", |
| 1800 "src/base/flags.h", | 1800 "src/base/flags.h", |
| 1801 "src/base/format-macros.h", | |
| 1802 "src/base/functional.cc", | 1801 "src/base/functional.cc", |
| 1803 "src/base/functional.h", | 1802 "src/base/functional.h", |
| 1804 "src/base/iterator.h", | 1803 "src/base/iterator.h", |
| 1805 "src/base/lazy-instance.h", | 1804 "src/base/lazy-instance.h", |
| 1806 "src/base/logging.cc", | 1805 "src/base/logging.cc", |
| 1807 "src/base/logging.h", | 1806 "src/base/logging.h", |
| 1808 "src/base/macros.h", | 1807 "src/base/macros.h", |
| 1809 "src/base/once.cc", | 1808 "src/base/once.cc", |
| 1810 "src/base/once.h", | 1809 "src/base/once.h", |
| 1811 "src/base/platform/condition-variable.cc", | 1810 "src/base/platform/condition-variable.cc", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2142 | 2141 |
| 2143 configs -= [ "//build/config/compiler:chromium_code" ] | 2142 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2144 configs += [ "//build/config/compiler:no_chromium_code" ] | 2143 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2145 configs += [ | 2144 configs += [ |
| 2146 ":internal_config", | 2145 ":internal_config", |
| 2147 ":libplatform_config", | 2146 ":libplatform_config", |
| 2148 ":features", | 2147 ":features", |
| 2149 ":toolchain", | 2148 ":toolchain", |
| 2150 ] | 2149 ] |
| 2151 } | 2150 } |
| OLD | NEW |