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