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

Side by Side Diff: components/precache/core/BUILD.gn

Issue 2229983002: Send the list of used and unused resources for precache (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 # These values are duplicated in the GYP build in: 7 # These values are duplicated in the GYP build in:
8 # //components/precache/precache_defines.gypi 8 # //components/precache/precache_defines.gypi
9 precache_config_settings_url = 9 precache_config_settings_url =
10 "https://www.gstatic.com/chrome/wifiprefetch/precache_config" 10 "https://www.gstatic.com/chrome/wifiprefetch/precache_config"
11 precache_manifest_url_prefix = 11 precache_manifest_url_prefix =
12 "https://www.gstatic.com/chrome/wifiprefetch/hosts/" 12 "https://www.gstatic.com/chrome/wifiprefetch/hosts/"
13 13
14 config("precache_config") { 14 config("precache_config") {
15 defines = [ 15 defines = [
16 "PRECACHE_CONFIG_SETTINGS_URL=\"$precache_config_settings_url\"", 16 "PRECACHE_CONFIG_SETTINGS_URL=\"$precache_config_settings_url\"",
17 "PRECACHE_MANIFEST_URL_PREFIX=\"$precache_manifest_url_prefix\"", 17 "PRECACHE_MANIFEST_URL_PREFIX=\"$precache_manifest_url_prefix\"",
18 ] 18 ]
19 } 19 }
20 20
21 static_library("core") { 21 static_library("core") {
22 sources = [ 22 sources = [
23 "fetcher_pool.h", 23 "fetcher_pool.h",
24 "precache_database.cc", 24 "precache_database.cc",
25 "precache_database.h", 25 "precache_database.h",
26 "precache_fetcher.cc", 26 "precache_fetcher.cc",
27 "precache_fetcher.h", 27 "precache_fetcher.h",
28 "precache_referrer_host_table.cc",
29 "precache_referrer_host_table.h",
28 "precache_session_table.cc", 30 "precache_session_table.cc",
29 "precache_session_table.h", 31 "precache_session_table.h",
30 "precache_switches.cc", 32 "precache_switches.cc",
31 "precache_switches.h", 33 "precache_switches.h",
32 "precache_url_table.cc", 34 "precache_url_table.cc",
33 "precache_url_table.h", 35 "precache_url_table.h",
34 ] 36 ]
35 37
36 # Note the GYP build sets this as direct dependent settings, but this is 38 # Note the GYP build sets this as direct dependent settings, but this is
37 # only used to share the settings with the unit tests. Instead, we just 39 # only used to share the settings with the unit tests. Instead, we just
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 ":proto", 76 ":proto",
75 "//base", 77 "//base",
76 "//base/test:test_support", 78 "//base/test:test_support",
77 "//components/history/core/browser", 79 "//components/history/core/browser",
78 "//net:test_support", 80 "//net:test_support",
79 "//sql", 81 "//sql",
80 "//testing/gmock", 82 "//testing/gmock",
81 "//testing/gtest", 83 "//testing/gtest",
82 ] 84 ]
83 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698