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_icon_client.h", |
7 "fallback_icon_service.cc", | 8 "fallback_icon_service.cc", |
8 "fallback_icon_service.h", | 9 "fallback_icon_service.h", |
9 "favicon_client.h", | 10 "favicon_client.h", |
10 "favicon_driver.h", | 11 "favicon_driver.h", |
11 "favicon_handler.cc", | 12 "favicon_handler.cc", |
12 "favicon_handler.h", | 13 "favicon_handler.h", |
13 "favicon_service.cc", | 14 "favicon_service.cc", |
14 "favicon_service.h", | 15 "favicon_service.h", |
15 "favicon_tab_helper_observer.h", | 16 "favicon_tab_helper_observer.h", |
16 "favicon_url.cc", | 17 "favicon_url.cc", |
17 "favicon_url.h", | 18 "favicon_url.h", |
18 ] | 19 ] |
19 | 20 |
20 deps = [ | 21 deps = [ |
21 "//components/bookmarks/browser", | 22 "//components/bookmarks/browser", |
22 "//components/favicon_base", | 23 "//components/favicon_base", |
23 "//components/history/core/browser", | 24 "//components/history/core/browser", |
24 "//components/keyed_service/core", | 25 "//components/keyed_service/core", |
25 "//skia", | 26 "//skia", |
26 "//ui/gfx", | 27 "//ui/gfx", |
27 "//url", | 28 "//url", |
28 ] | 29 ] |
29 } | 30 } |
OLD | NEW |