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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 sources -= [ | 367 sources -= [ |
362 "geolocation/empty_wifi_data_provider.cc", | 368 "geolocation/empty_wifi_data_provider.cc", |
363 ] | 369 ] |
364 deps += [ "//dbus" ] | 370 deps += [ "//dbus" ] |
365 } else { | 371 } else { |
366 # This will already have gotten removed for all non-Linux cases. | 372 # This will already have gotten removed for all non-Linux cases. |
367 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 373 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
368 } | 374 } |
369 } | 375 } |
370 } | 376 } |
OLD | NEW |