[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 1 | # 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 | |
| 5 | source_set("favicon_base") { |
| 6 | sources = [ |
huangs | 3382fc9d | 2015-02-11 22:18:38 | [diff] [blame] | 7 | "fallback_icon_service.cc", |
| 8 | "fallback_icon_service.h", |
| 9 | "fallback_icon_style.cc", |
| 10 | "fallback_icon_style.h", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 11 | "favicon_callback.h", |
| 12 | "favicon_types.cc", |
| 13 | "favicon_types.h", |
naiem.shaik | 0d04963 | 2015-02-11 19:05:01 | [diff] [blame] | 14 | "favicon_usage_data.cc", |
| 15 | "favicon_usage_data.h", |
[email protected] | 1257f64 | 2014-06-16 18:37:13 | [diff] [blame] | 16 | "favicon_util.cc", |
| 17 | "favicon_util.h", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 18 | "select_favicon_frames.cc", |
| 19 | "select_favicon_frames.h", |
| 20 | ] |
| 21 | |
| 22 | deps = [ |
| 23 | "//base", |
| 24 | "//skia", |
sdefresne | f900329e | 2015-01-14 09:49:06 | [diff] [blame] | 25 | "//ui/base", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 26 | "//ui/gfx", |
sergeyu | 202c002 | 2015-02-19 20:10:36 | [diff] [blame^] | 27 | "//ui/gfx/geometry", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 28 | "//url", |
| 29 | ] |
| 30 | } |
sdefresne | f900329e | 2015-01-14 09:49:06 | [diff] [blame] | 31 | |
| 32 | source_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", |
sergeyu | 202c002 | 2015-02-19 20:10:36 | [diff] [blame^] | 43 | "//ui/gfx/geometry", |
sdefresne | f900329e | 2015-01-14 09:49:06 | [diff] [blame] | 44 | ] |
| 45 | } |