blob: 07daa0abe360232514b36eb0e9609e305584a7d3 [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",
sergeyu202c0022015-02-19 20:10:3627 "//ui/gfx/geometry",
[email protected]a306aaa2014-05-24 13:21:5028 "//url",
29 ]
30}
sdefresnef900329e2015-01-14 09:49:0631
32source_set("unit_tests") {
33 testonly = true
34 sources = [
35 "select_favicon_frames_unittest.cc",
36 ]
37
38 deps = [
39 ":favicon_base",
40 "//testing/gtest",
41 "//ui/base",
42 "//ui/gfx",
sergeyu202c0022015-02-19 20:10:3643 "//ui/gfx/geometry",
sdefresnef900329e2015-01-14 09:49:0644 ]
45}