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 static_library("core") { | 5 static_library("core") { |
6 sources = [ | 6 sources = [ |
7 "fallback_url_util.cc", | 7 "fallback_url_util.cc", |
8 "fallback_url_util.h", | 8 "fallback_url_util.h", |
9 "favicon_client.h", | 9 "favicon_client.h", |
10 "favicon_driver.cc", | 10 "favicon_driver.cc", |
11 "favicon_driver.h", | 11 "favicon_driver.h", |
12 "favicon_driver_impl.cc", | 12 "favicon_driver_impl.cc", |
13 "favicon_driver_impl.h", | 13 "favicon_driver_impl.h", |
14 "favicon_driver_observer.h", | 14 "favicon_driver_observer.h", |
15 "favicon_handler.cc", | 15 "favicon_handler.cc", |
16 "favicon_handler.h", | 16 "favicon_handler.h", |
| 17 "favicon_selector.cc", |
| 18 "favicon_selector.h", |
17 "favicon_service.cc", | 19 "favicon_service.cc", |
18 "favicon_service.h", | 20 "favicon_service.h", |
19 "favicon_service_impl.cc", | 21 "favicon_service_impl.cc", |
20 "favicon_service_impl.h", | 22 "favicon_service_impl.h", |
21 "favicon_url.cc", | 23 "favicon_url.cc", |
22 "favicon_url.h", | 24 "favicon_url.h", |
23 "favicon_util.cc", | 25 "favicon_util.cc", |
24 "favicon_util.h", | 26 "favicon_util.h", |
25 "large_icon_service.cc", | 27 "large_icon_service.cc", |
26 "large_icon_service.h", | 28 "large_icon_service.h", |
(...skipping 19 matching lines...) Expand all Loading... |
46 "fallback_icon_service.h", | 48 "fallback_icon_service.h", |
47 ] | 49 ] |
48 } | 50 } |
49 } | 51 } |
50 | 52 |
51 source_set("unit_tests") { | 53 source_set("unit_tests") { |
52 testonly = true | 54 testonly = true |
53 sources = [ | 55 sources = [ |
54 "fallback_url_util_unittest.cc", | 56 "fallback_url_util_unittest.cc", |
55 "favicon_handler_unittest.cc", | 57 "favicon_handler_unittest.cc", |
| 58 "favicon_selector_unittest.cc", |
56 "favicon_service_impl_unittest.cc", | 59 "favicon_service_impl_unittest.cc", |
57 "large_icon_service_unittest.cc", | 60 "large_icon_service_unittest.cc", |
58 ] | 61 ] |
59 | 62 |
60 deps = [ | 63 deps = [ |
61 ":core", | 64 ":core", |
62 "//base", | 65 "//base", |
63 "//base/test:test_support", | 66 "//base/test:test_support", |
64 "//components/favicon/core/test:test_support", | 67 "//components/favicon/core/test:test_support", |
65 "//components/favicon_base", | 68 "//components/favicon_base", |
66 "//components/history/core/browser:browser", | 69 "//components/history/core/browser:browser", |
67 "//components/history/core/test:test", | 70 "//components/history/core/test:test", |
68 "//skia", | 71 "//skia", |
69 "//testing/gmock", | 72 "//testing/gmock", |
70 "//testing/gtest", | 73 "//testing/gtest", |
71 "//ui/base", | 74 "//ui/base", |
72 "//ui/gfx", | 75 "//ui/gfx", |
73 "//ui/gfx:test_support", | 76 "//ui/gfx:test_support", |
74 "//url", | 77 "//url", |
75 ] | 78 ] |
76 } | 79 } |
OLD | NEW |