summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/favicon/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/browser/favicon/BUILD.gn')
-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",
+ ]
+}