| 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 1826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1837 | 1837 |
| 1838 sources = [ | 1838 sources = [ |
| 1839 "test/fuzzer/fuzzer-support.cc", | 1839 "test/fuzzer/fuzzer-support.cc", |
| 1840 "test/fuzzer/fuzzer-support.h", | 1840 "test/fuzzer/fuzzer-support.h", |
| 1841 ] | 1841 ] |
| 1842 | 1842 |
| 1843 configs -= [ "//build/config/compiler:chromium_code" ] | 1843 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1844 configs += [ "//build/config/compiler:no_chromium_code" ] | 1844 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 1845 configs += [ | 1845 configs += [ |
| 1846 ":internal_config_base", | 1846 ":internal_config_base", |
| 1847 ":libplatform_config", |
| 1847 ":features", | 1848 ":features", |
| 1848 ":toolchain", | 1849 ":toolchain", |
| 1849 ] | 1850 ] |
| 1850 | 1851 |
| 1851 deps = [ | 1852 deps = [ |
| 1852 ":v8_libplatform", | 1853 ":v8_libplatform", |
| 1853 snapshot_target, | 1854 snapshot_target, |
| 1854 ] | 1855 ] |
| 1855 } | 1856 } |
| 1856 | 1857 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2019 | 2020 |
| 2020 configs -= [ "//build/config/compiler:chromium_code" ] | 2021 configs -= [ "//build/config/compiler:chromium_code" ] |
| 2021 configs += [ "//build/config/compiler:no_chromium_code" ] | 2022 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 2022 configs += [ | 2023 configs += [ |
| 2023 ":internal_config", | 2024 ":internal_config", |
| 2024 ":libplatform_config", | 2025 ":libplatform_config", |
| 2025 ":features", | 2026 ":features", |
| 2026 ":toolchain", | 2027 ":toolchain", |
| 2027 ] | 2028 ] |
| 2028 } | 2029 } |
| OLD | NEW |