blob: 57c42a44d3b9f13b60860104520867b0087084a1 [file] [log] [blame]
[email protected]a306aaa2014-05-24 13:21:501# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5source_set("favicon_base") {
6 sources = [
huangs3382fc9d2015-02-11 22:18:387 "fallback_icon_service.cc",
8 "fallback_icon_service.h",
9 "fallback_icon_style.cc",
10 "fallback_icon_style.h",
[email protected]a306aaa2014-05-24 13:21:5011 "favicon_callback.h",
12 "favicon_types.cc",
13 "favicon_types.h",
naiem.shaik0d049632015-02-11 19:05:0114 "favicon_usage_data.cc",
15 "favicon_usage_data.h",
[email protected]1257f642014-06-16 18:37:1316 "favicon_util.cc",
17 "favicon_util.h",
[email protected]a306aaa2014-05-24 13:21:5018 "select_favicon_frames.cc",
19 "select_favicon_frames.h",
20 ]
21
22 deps = [
23 "//base",
24 "//skia",
sdefresnef900329e2015-01-14 09:49:0625 "//ui/base",
[email protected]a306aaa2014-05-24 13:21:5026 "//ui/gfx",
27 "//url",
28 ]
29}
sdefresnef900329e2015-01-14 09:49:0630
31source_set("unit_tests") {
32 testonly = true
33 sources = [
34 "select_favicon_frames_unittest.cc",
35 ]
36
37 deps = [
38 ":favicon_base",
39 "//testing/gtest",
40 "//ui/base",
41 "//ui/gfx",
42 ]
43}