summaryrefslogtreecommitdiffstats
path: root/components/favicon/core/BUILD.gn
blob: bbda145967adfcebea8d848acfbac375a5298e59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Copyright 2014 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.

static_library("core") {
  sources = [
    "fallback_icon_service.cc",
    "fallback_icon_service.h",
    "favicon_client.h",
    "favicon_driver.h",
    "favicon_handler.cc",
    "favicon_handler.h",
    "favicon_service.cc",
    "favicon_service.h",
    "favicon_tab_helper_observer.h",
    "favicon_url.cc",
    "favicon_url.h",
  ]

  deps = [
    "//components/bookmarks/browser",
    "//components/favicon_base",
    "//components/history/core/browser",
    "//components/keyed_service/core",
    "//skia",
    "//ui/gfx",
    "//url",
  ]
}