| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
| 8 | 8 |
| 9 config("storage_config") { |
| 10 if (is_android) { |
| 11 defines = [ "APPCACHE_USE_SIMPLE_CACHE" ] |
| 12 } |
| 13 } |
| 14 |
| 9 source_set("browser") { | 15 source_set("browser") { |
| 10 # Only targets in the content tree can depend directly on this target. | 16 # Only targets in the content tree can depend directly on this target. |
| 11 visibility = [ "//content/*" ] | 17 visibility = [ "//content/*" ] |
| 12 | 18 |
| 13 defines = [] | 19 defines = [] |
| 14 libs = [] | 20 libs = [] |
| 15 ldflags = [] | 21 ldflags = [] |
| 16 | 22 |
| 17 # Shared deps. See also non-iOS deps below. | 23 # Shared deps. See also non-iOS deps below. |
| 18 deps = [ | 24 deps = [ |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 sources -= [ | 366 sources -= [ |
| 361 "geolocation/empty_wifi_data_provider.cc", | 367 "geolocation/empty_wifi_data_provider.cc", |
| 362 ] | 368 ] |
| 363 deps += [ "//dbus" ] | 369 deps += [ "//dbus" ] |
| 364 } else { | 370 } else { |
| 365 # This will already have gotten removed for all non-Linux cases. | 371 # This will already have gotten removed for all non-Linux cases. |
| 366 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 372 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
| 367 } | 373 } |
| 368 } | 374 } |
| 369 } | 375 } |
| OLD | NEW |