| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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") { | 5 source_set("favicon") { |
| 6 configs += [ "//build/config/compiler:enable_arc" ] | 6 configs += [ "//build/config/compiler:enable_arc" ] |
| 7 sources = [ | 7 sources = [ |
| 8 "favicon_attributes.h", | |
| 9 "favicon_attributes.mm", | |
| 10 "favicon_attributes_provider.h", | 8 "favicon_attributes_provider.h", |
| 11 "favicon_attributes_provider.mm", | 9 "favicon_attributes_provider.mm", |
| 12 "favicon_client_impl.h", | 10 "favicon_client_impl.h", |
| 13 "favicon_client_impl.mm", | 11 "favicon_client_impl.mm", |
| 14 "favicon_loader.h", | 12 "favicon_loader.h", |
| 15 "favicon_loader.mm", | 13 "favicon_loader.mm", |
| 16 "favicon_service_factory.cc", | 14 "favicon_service_factory.cc", |
| 17 "favicon_service_factory.h", | 15 "favicon_service_factory.h", |
| 18 "ios_chrome_favicon_loader_factory.h", | 16 "ios_chrome_favicon_loader_factory.h", |
| 19 "ios_chrome_favicon_loader_factory.mm", | 17 "ios_chrome_favicon_loader_factory.mm", |
| 20 "ios_chrome_large_icon_cache_factory.cc", | 18 "ios_chrome_large_icon_cache_factory.cc", |
| 21 "ios_chrome_large_icon_cache_factory.h", | 19 "ios_chrome_large_icon_cache_factory.h", |
| 22 "ios_chrome_large_icon_service_factory.cc", | 20 "ios_chrome_large_icon_service_factory.cc", |
| 23 "ios_chrome_large_icon_service_factory.h", | 21 "ios_chrome_large_icon_service_factory.h", |
| 24 "large_icon_cache.cc", | 22 "large_icon_cache.cc", |
| 25 "large_icon_cache.h", | 23 "large_icon_cache.h", |
| 26 ] | 24 ] |
| 27 deps = [ | 25 deps = [ |
| 28 "//base", | 26 "//base", |
| 29 "//components/favicon/core", | 27 "//components/favicon/core", |
| 30 "//components/favicon_base", | 28 "//components/favicon_base", |
| 31 "//components/image_fetcher/core", | 29 "//components/image_fetcher/core", |
| 32 "//components/image_fetcher/ios", | 30 "//components/image_fetcher/ios", |
| 33 "//components/keyed_service/core", | 31 "//components/keyed_service/core", |
| 34 "//components/keyed_service/ios", | 32 "//components/keyed_service/ios", |
| 35 "//components/resources", | 33 "//components/resources", |
| 36 "//ios/chrome/browser", | 34 "//ios/chrome/browser", |
| 37 "//ios/chrome/browser/browser_state", | 35 "//ios/chrome/browser/browser_state", |
| 38 "//ios/chrome/browser/history", | 36 "//ios/chrome/browser/history", |
| 37 "//ios/chrome/browser/ui/favicon", |
| 39 "//ios/web", | 38 "//ios/web", |
| 40 "//skia", | 39 "//skia", |
| 41 "//ui/base", | 40 "//ui/base", |
| 42 "//ui/gfx", | 41 "//ui/gfx", |
| 43 "//url", | 42 "//url", |
| 44 ] | 43 ] |
| 45 } | 44 } |
| 46 | 45 |
| 47 source_set("unit_tests") { | 46 source_set("unit_tests") { |
| 48 testonly = true | 47 testonly = true |
| 49 sources = [ | 48 sources = [ |
| 50 "large_icon_cache_unittest.cc", | 49 "large_icon_cache_unittest.cc", |
| 51 ] | 50 ] |
| 52 deps = [ | 51 deps = [ |
| 53 ":favicon", | 52 ":favicon", |
| 54 "//base", | 53 "//base", |
| 55 "//components/favicon_base", | 54 "//components/favicon_base", |
| 56 "//skia", | 55 "//skia", |
| 57 "//testing/gtest", | 56 "//testing/gtest", |
| 58 "//ui/gfx", | 57 "//ui/gfx", |
| 59 "//ui/gfx:test_support", | 58 "//ui/gfx:test_support", |
| 60 ] | 59 ] |
| 61 } | 60 } |
| OLD | NEW |