| 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 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1765 "src/base/atomicops_internals_x86_gcc.h", | 1765 "src/base/atomicops_internals_x86_gcc.h", |
| 1766 "src/base/atomicops_internals_x86_msvc.h", | 1766 "src/base/atomicops_internals_x86_msvc.h", |
| 1767 "src/base/bits.cc", | 1767 "src/base/bits.cc", |
| 1768 "src/base/bits.h", | 1768 "src/base/bits.h", |
| 1769 "src/base/build_config.h", | 1769 "src/base/build_config.h", |
| 1770 "src/base/cpu.cc", | 1770 "src/base/cpu.cc", |
| 1771 "src/base/cpu.h", | 1771 "src/base/cpu.h", |
| 1772 "src/base/division-by-constant.cc", | 1772 "src/base/division-by-constant.cc", |
| 1773 "src/base/division-by-constant.h", | 1773 "src/base/division-by-constant.h", |
| 1774 "src/base/flags.h", | 1774 "src/base/flags.h", |
| 1775 "src/base/format-macros.h", | |
| 1776 "src/base/functional.cc", | 1775 "src/base/functional.cc", |
| 1777 "src/base/functional.h", | 1776 "src/base/functional.h", |
| 1778 "src/base/iterator.h", | 1777 "src/base/iterator.h", |
| 1779 "src/base/lazy-instance.h", | 1778 "src/base/lazy-instance.h", |
| 1780 "src/base/logging.cc", | 1779 "src/base/logging.cc", |
| 1781 "src/base/logging.h", | 1780 "src/base/logging.h", |
| 1782 "src/base/macros.h", | 1781 "src/base/macros.h", |
| 1783 "src/base/once.cc", | 1782 "src/base/once.cc", |
| 1784 "src/base/once.h", | 1783 "src/base/once.h", |
| 1785 "src/base/platform/condition-variable.cc", | 1784 "src/base/platform/condition-variable.cc", |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2116 | 2115 |
| 2117 configs -= [ "//build/config/compiler:chromium_code" ] | 2116 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2118 configs += [ "//build/config/compiler:no_chromium_code" ] | 2117 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2119 configs += [ | 2118 configs += [ |
| 2120 ":internal_config", | 2119 ":internal_config", |
| 2121 ":libplatform_config", | 2120 ":libplatform_config", |
| 2122 ":features", | 2121 ":features", |
| 2123 ":toolchain", | 2122 ":toolchain", |
| 2124 ] | 2123 ] |
| 2125 } | 2124 } |
| OLD | NEW |