Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(519)

Side by Side Diff: content/browser/BUILD.gn

Issue 424863002: Fill in some of ServiceWorkerFetchStores. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cache_storage
Patch Set: Updated license Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/service_worker/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "//content:resources", 26 "//content:resources",
27 "//content/browser/service_worker:database_proto", 27 "//content/browser/service_worker:proto",
28 "//content/browser/speech/proto", 28 "//content/browser/speech/proto",
29 "//crypto", 29 "//crypto",
30 "//google_apis", 30 "//google_apis",
31 "//net", 31 "//net",
32 "//skia", 32 "//skia",
33 "//sql", 33 "//sql",
34 "//third_party/re2", 34 "//third_party/re2",
35 "//third_party/WebKit/public:blink_headers", 35 "//third_party/WebKit/public:blink_headers",
36 "//third_party/zlib", 36 "//third_party/zlib",
37 "//third_party/zlib:zip", 37 "//third_party/zlib:zip",
(...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 sources -= [ 402 sources -= [
403 "geolocation/empty_wifi_data_provider.cc", 403 "geolocation/empty_wifi_data_provider.cc",
404 ] 404 ]
405 deps += [ "//dbus" ] 405 deps += [ "//dbus" ]
406 } else { 406 } else {
407 # This will already have gotten removed for all non-Linux cases. 407 # This will already have gotten removed for all non-Linux cases.
408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] 408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ]
409 } 409 }
410 } 410 }
411 } 411 }
OLDNEW
« no previous file with comments | « no previous file | content/browser/service_worker/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698