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