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") { | 9 config("storage_config") { |
10 if (is_android) { | 10 if (is_android) { |
11 defines = [ "APPCACHE_USE_SIMPLE_CACHE" ] | 11 defines = [ "APPCACHE_USE_SIMPLE_CACHE" ] |
12 } | 12 } |
13 } | 13 } |
14 | 14 |
15 source_set("browser") { | 15 source_set("browser") { |
16 # 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. |
17 visibility = [ "//content/*" ] | 17 visibility = [ "//content/*" ] |
18 | 18 |
19 defines = [] | 19 defines = [] |
20 libs = [] | 20 libs = [] |
21 ldflags = [] | 21 ldflags = [] |
22 | 22 |
23 # Shared deps. See also non-iOS deps below. | 23 # Shared deps. See also non-iOS deps below. |
24 deps = [ | 24 deps = [ |
25 "//base", | 25 "//base", |
| 26 "//base:base_static", |
26 "//content:resources", | 27 "//content:resources", |
27 "//content/browser/service_worker:proto", | 28 "//content/browser/service_worker:proto", |
28 "//content/browser/speech/proto", | 29 "//content/browser/speech/proto", |
29 "//crypto", | 30 "//crypto", |
30 "//google_apis", | 31 "//google_apis", |
31 "//net", | 32 "//net", |
32 "//skia", | 33 "//skia", |
33 "//sql", | 34 "//sql", |
34 "//third_party/re2", | 35 "//third_party/re2", |
35 "//third_party/WebKit/public:blink_headers", | 36 "//third_party/WebKit/public:blink_headers", |
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 sources -= [ | 403 sources -= [ |
403 "geolocation/empty_wifi_data_provider.cc", | 404 "geolocation/empty_wifi_data_provider.cc", |
404 ] | 405 ] |
405 deps += [ "//dbus" ] | 406 deps += [ "//dbus" ] |
406 } else { | 407 } else { |
407 # This will already have gotten removed for all non-Linux cases. | 408 # This will already have gotten removed for all non-Linux cases. |
408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 409 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
409 } | 410 } |
410 } | 411 } |
411 } | 412 } |
OLD | NEW |