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("core") { | 5 source_set("core") { |
6 sources = [ | 6 sources = [ |
7 "fallback_icon_client.h", | |
8 "fallback_icon_service.cc", | |
9 "fallback_icon_service.h", | |
10 "favicon_client.h", | 7 "favicon_client.h", |
11 "favicon_driver.cc", | 8 "favicon_driver.cc", |
12 "favicon_driver.h", | 9 "favicon_driver.h", |
13 "favicon_driver_impl.cc", | 10 "favicon_driver_impl.cc", |
14 "favicon_driver_impl.h", | 11 "favicon_driver_impl.h", |
15 "favicon_driver_observer.h", | 12 "favicon_driver_observer.h", |
16 "favicon_handler.cc", | 13 "favicon_handler.cc", |
17 "favicon_handler.h", | 14 "favicon_handler.h", |
18 "favicon_service.cc", | 15 "favicon_service.cc", |
19 "favicon_service.h", | 16 "favicon_service.h", |
20 "favicon_url.cc", | 17 "favicon_url.cc", |
21 "favicon_url.h", | 18 "favicon_url.h", |
22 "favicon_util.cc", | 19 "favicon_util.cc", |
23 "favicon_util.h", | 20 "favicon_util.h", |
24 "large_icon_service.cc", | 21 "large_icon_service.cc", |
25 "large_icon_service.h", | 22 "large_icon_service.h", |
26 ] | 23 ] |
27 | 24 |
28 deps = [ | 25 deps = [ |
29 "//base", | 26 "//base", |
30 "//components/bookmarks/browser", | 27 "//components/bookmarks/browser", |
31 "//components/favicon_base", | 28 "//components/favicon_base", |
32 "//components/history/core/browser", | 29 "//components/history/core/browser", |
33 "//components/keyed_service/core", | 30 "//components/keyed_service/core", |
34 "//skia", | 31 "//skia", |
35 "//ui/base", | 32 "//ui/base", |
36 "//ui/gfx", | 33 "//ui/gfx", |
37 "//url", | 34 "//url", |
38 ] | 35 ] |
36 if (!is_ios) { | |
blundell
2017/03/22 10:29:09
FYI, these files should just be moved to //compone
| |
37 sources += [ | |
38 "fallback_icon_client.h", | |
39 "fallback_icon_service.cc", | |
40 "fallback_icon_service.h", | |
41 ] | |
42 } | |
39 } | 43 } |
40 | 44 |
41 source_set("unit_tests") { | 45 source_set("unit_tests") { |
42 testonly = true | 46 testonly = true |
43 sources = [ | 47 sources = [ |
44 "favicon_handler_unittest.cc", | 48 "favicon_handler_unittest.cc", |
45 "large_icon_service_unittest.cc", | 49 "large_icon_service_unittest.cc", |
46 ] | 50 ] |
47 | 51 |
48 deps = [ | 52 deps = [ |
49 "//base", | 53 "//base", |
50 "//components/favicon_base", | 54 "//components/favicon_base", |
51 "//skia", | 55 "//skia", |
52 "//testing/gtest", | 56 "//testing/gtest", |
53 "//ui/base", | 57 "//ui/base", |
54 "//ui/gfx", | 58 "//ui/gfx", |
55 "//url", | 59 "//url", |
56 ] | 60 ] |
57 } | 61 } |
OLD | NEW |