blob: 1bea91e7b39519790fc6c8a0fbeb5575d7dfeeb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2015 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("content") {
sources = [
"content_favicon_driver.cc",
"content_favicon_driver.h",
"favicon_url_util.cc",
"favicon_url_util.h",
]
deps = [
"//base",
"//components/favicon/core",
"//components/favicon_base",
"//content/public/browser",
"//content/public/common",
"//ui/gfx",
]
}
|