[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 = [ |
| 7 | "favicon_callback.h", |
| 8 | "favicon_types.cc", |
| 9 | "favicon_types.h", |
[email protected] | 1257f64 | 2014-06-16 18:37:13 | [diff] [blame] | 10 | "favicon_util.cc", |
| 11 | "favicon_util.h", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 12 | "select_favicon_frames.cc", |
| 13 | "select_favicon_frames.h", |
| 14 | ] |
| 15 | |
| 16 | deps = [ |
| 17 | "//base", |
| 18 | "//skia", |
sdefresne | f900329e | 2015-01-14 09:49:06 | [diff] [blame^] | 19 | "//ui/base", |
[email protected] | a306aaa | 2014-05-24 13:21:50 | [diff] [blame] | 20 | "//ui/gfx", |
| 21 | "//url", |
| 22 | ] |
| 23 | } |
sdefresne | f900329e | 2015-01-14 09:49:06 | [diff] [blame^] | 24 | |
| 25 | source_set("unit_tests") { |
| 26 | testonly = true |
| 27 | sources = [ |
| 28 | "select_favicon_frames_unittest.cc", |
| 29 | ] |
| 30 | |
| 31 | deps = [ |
| 32 | ":favicon_base", |
| 33 | "//testing/gtest", |
| 34 | "//ui/base", |
| 35 | "//ui/gfx", |
| 36 | ] |
| 37 | } |