| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("favicon_base") { | 5 source_set("favicon_base") { |
| 6 sources = [ | 6 sources = [ |
| 7 "fallback_icon_service.cc", | 7 "fallback_icon_service.cc", |
| 8 "fallback_icon_service.h", | 8 "fallback_icon_service.h", |
| 9 "fallback_icon_style.cc", | 9 "fallback_icon_style.cc", |
| 10 "fallback_icon_style.h", | 10 "fallback_icon_style.h", |
| 11 "favicon_callback.h", | 11 "favicon_callback.h", |
| 12 "favicon_types.cc", | 12 "favicon_types.cc", |
| 13 "favicon_types.h", | 13 "favicon_types.h", |
| 14 "favicon_usage_data.cc", | 14 "favicon_usage_data.cc", |
| 15 "favicon_usage_data.h", | 15 "favicon_usage_data.h", |
| 16 "favicon_util.cc", | 16 "favicon_util.cc", |
| 17 "favicon_util.h", | 17 "favicon_util.h", |
| 18 "select_favicon_frames.cc", | 18 "select_favicon_frames.cc", |
| 19 "select_favicon_frames.h", | 19 "select_favicon_frames.h", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 "//base", | 23 "//base", |
| 24 "//skia", | 24 "//skia", |
| 25 "//ui/base", | 25 "//ui/base", |
| 26 "//ui/gfx", | 26 "//ui/gfx", |
| 27 "//ui/gfx/geometry", |
| 27 "//url", | 28 "//url", |
| 28 ] | 29 ] |
| 29 } | 30 } |
| 30 | 31 |
| 31 source_set("unit_tests") { | 32 source_set("unit_tests") { |
| 32 testonly = true | 33 testonly = true |
| 33 sources = [ | 34 sources = [ |
| 34 "select_favicon_frames_unittest.cc", | 35 "select_favicon_frames_unittest.cc", |
| 35 ] | 36 ] |
| 36 | 37 |
| 37 deps = [ | 38 deps = [ |
| 38 ":favicon_base", | 39 ":favicon_base", |
| 39 "//testing/gtest", | 40 "//testing/gtest", |
| 40 "//ui/base", | 41 "//ui/base", |
| 41 "//ui/gfx", | 42 "//ui/gfx", |
| 43 "//ui/gfx/geometry", |
| 42 ] | 44 ] |
| 43 } | 45 } |
| OLD | NEW |