| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("favicon") { |
| 6 sources = [ |
| 7 "favicon_attributes.h", |
| 8 "favicon_attributes.mm", |
| 9 "favicon_attributes_provider.h", |
| 10 "favicon_attributes_provider.mm", |
| 11 "favicon_client_impl.h", |
| 12 "favicon_client_impl.mm", |
| 13 "favicon_loader.h", |
| 14 "favicon_loader.mm", |
| 15 "favicon_service_factory.cc", |
| 16 "favicon_service_factory.h", |
| 17 "ios_chrome_favicon_loader_factory.h", |
| 18 "ios_chrome_favicon_loader_factory.mm", |
| 19 "ios_chrome_large_icon_cache_factory.cc", |
| 20 "ios_chrome_large_icon_cache_factory.h", |
| 21 "ios_chrome_large_icon_service_factory.cc", |
| 22 "ios_chrome_large_icon_service_factory.h", |
| 23 "large_icon_cache.cc", |
| 24 "large_icon_cache.h", |
| 25 ] |
| 26 deps = [ |
| 27 "//base", |
| 28 "//components/favicon/core", |
| 29 "//components/favicon_base", |
| 30 "//components/keyed_service/core", |
| 31 "//components/keyed_service/ios", |
| 32 "//ios/chrome/browser:browser_no_public_deps", |
| 33 "//ios/chrome/browser/browser_state", |
| 34 "//ios/chrome/browser/history", |
| 35 "//ios/public/provider/chrome/browser", |
| 36 "//ios/web", |
| 37 "//skia", |
| 38 "//ui/gfx", |
| 39 "//url", |
| 40 ] |
| 41 } |
| 42 |
| 43 source_set("unit_tests") { |
| 44 testonly = true |
| 45 sources = [ |
| 46 "large_icon_cache_unittest.cc", |
| 47 ] |
| 48 deps = [ |
| 49 ":favicon", |
| 50 "//base", |
| 51 "//components/favicon_base", |
| 52 "//skia", |
| 53 "//testing/gtest", |
| 54 "//ui/gfx", |
| 55 "//ui/gfx:test_support", |
| 56 ] |
| 57 } |
| OLD | NEW |