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

Unified Diff: components/favicon/core/BUILD.gn

Issue 2721363002: Extend LargeIconService to fetch missing favicons from a Google server (Closed)
Patch Set: Fixed public_deps. Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: components/favicon/core/BUILD.gn
diff --git a/components/favicon/core/BUILD.gn b/components/favicon/core/BUILD.gn
index c086a6c910dd17bcd5ecef96aaf3f3fb334594b9..794f26c1888b91ce8878ac4a1e0cc2ee6f733981 100644
--- a/components/favicon/core/BUILD.gn
+++ b/components/favicon/core/BUILD.gn
@@ -26,13 +26,18 @@ static_library("core") {
"large_icon_service.h",
]
- deps = [
+ public_deps = [
sdefresne 2017/03/23 10:24:41 I don't think this whole public_deps is correct. I
mastiz 2017/03/23 12:03:23 Done. Although not many, there are certainly exam
"//base",
+ "//components/favicon_base",
+ "//components/image_fetcher/core",
+ "//components/keyed_service/core",
+ ]
+
+ deps = [
"//base:i18n",
"//components/bookmarks/browser",
- "//components/favicon_base",
+ "//components/data_use_measurement/core",
"//components/history/core/browser",
- "//components/keyed_service/core",
"//net:net",
"//skia",
"//ui/base",
@@ -66,6 +71,7 @@ source_set("unit_tests") {
"//components/favicon_base",
"//components/history/core/browser:browser",
"//components/history/core/test:test",
+ "//components/image_fetcher/core",
"//skia",
"//testing/gmock",
"//testing/gtest",

Powered by Google App Engine
This is Rietveld 408576698