summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/favicon
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-09-29 16:16:15 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-11-09 10:04:06 +0000
commita95a7417ad456115a1ef2da4bb8320531c0821f1 (patch)
treeedcd59279e486d2fd4a8f88a7ed025bcf925c6e6 /chromium/chrome/browser/favicon
parent33fc33aa94d4add0878ec30dc818e34e1dd3cc2a (diff)
downloadqtwebengine-chromium-a95a7417ad456115a1ef2da4bb8320531c0821f1.tar.gz
BASELINE: Update Chromium to 106.0.5249.126
Change-Id: Ib0bb21c437a7d1686e21c33f2d329f2ac425b7ab Reviewed-on: https://codereview.qt-project.org/c/qt/qtwebengine-chromium/+/438936 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/chrome/browser/favicon')
-rw-r--r--chromium/chrome/browser/favicon/BUILD.gn35
1 files changed, 35 insertions, 0 deletions
diff --git a/chromium/chrome/browser/favicon/BUILD.gn b/chromium/chrome/browser/favicon/BUILD.gn
new file mode 100644
index 00000000000..fe53f87837a
--- /dev/null
+++ b/chromium/chrome/browser/favicon/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2022 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("favicon") {
+ sources = [
+ "chrome_favicon_client.cc",
+ "chrome_favicon_client.h",
+ "favicon_service_factory.cc",
+ "favicon_service_factory.h",
+ "favicon_utils.cc",
+ "favicon_utils.h",
+ "history_ui_favicon_request_handler_factory.cc",
+ "history_ui_favicon_request_handler_factory.h",
+ "large_icon_service_factory.cc",
+ "large_icon_service_factory.h",
+ ]
+ deps = [
+ "//chrome/app/resources:platform_locale_settings",
+ "//chrome/browser/profiles",
+ "//chrome/browser/profiles:profile",
+ "//chrome/common",
+ "//components/bookmarks/browser",
+ "//components/favicon/content",
+ "//components/favicon/core",
+ "//components/favicon/core:history_implementation",
+ "//components/image_fetcher/core",
+ "//components/keyed_service/content",
+ "//components/sync",
+ "//content/public/browser",
+ "//ui/gfx",
+ "//ui/native_theme",
+ "//ui/resources",
+ ]
+}