| 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", | 8 "favicon_attributes.h", |
| 9 "favicon_attributes.mm", | 9 "favicon_attributes.mm", |
| 10 "favicon_attributes_provider.h", | 10 "favicon_attributes_provider.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "ios_chrome_large_icon_cache_factory.h", | 21 "ios_chrome_large_icon_cache_factory.h", |
| 22 "ios_chrome_large_icon_service_factory.cc", | 22 "ios_chrome_large_icon_service_factory.cc", |
| 23 "ios_chrome_large_icon_service_factory.h", | 23 "ios_chrome_large_icon_service_factory.h", |
| 24 "large_icon_cache.cc", | 24 "large_icon_cache.cc", |
| 25 "large_icon_cache.h", | 25 "large_icon_cache.h", |
| 26 ] | 26 ] |
| 27 deps = [ | 27 deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//components/favicon/core", | 29 "//components/favicon/core", |
| 30 "//components/favicon_base", | 30 "//components/favicon_base", |
| 31 "//components/image_fetcher/core", |
| 32 "//components/image_fetcher/ios", |
| 31 "//components/keyed_service/core", | 33 "//components/keyed_service/core", |
| 32 "//components/keyed_service/ios", | 34 "//components/keyed_service/ios", |
| 33 "//components/resources", | 35 "//components/resources", |
| 34 "//ios/chrome/browser", | 36 "//ios/chrome/browser", |
| 35 "//ios/chrome/browser/browser_state", | 37 "//ios/chrome/browser/browser_state", |
| 36 "//ios/chrome/browser/history", | 38 "//ios/chrome/browser/history", |
| 37 "//ios/web", | 39 "//ios/web", |
| 38 "//skia", | 40 "//skia", |
| 39 "//ui/base", | 41 "//ui/base", |
| 40 "//ui/gfx", | 42 "//ui/gfx", |
| 41 "//url", | 43 "//url", |
| 42 ] | 44 ] |
| 43 } | 45 } |
| 44 | 46 |
| 45 source_set("unit_tests") { | 47 source_set("unit_tests") { |
| 46 testonly = true | 48 testonly = true |
| 47 sources = [ | 49 sources = [ |
| 48 "large_icon_cache_unittest.cc", | 50 "large_icon_cache_unittest.cc", |
| 49 ] | 51 ] |
| 50 deps = [ | 52 deps = [ |
| 51 ":favicon", | 53 ":favicon", |
| 52 "//base", | 54 "//base", |
| 53 "//components/favicon_base", | 55 "//components/favicon_base", |
| 54 "//skia", | 56 "//skia", |
| 55 "//testing/gtest", | 57 "//testing/gtest", |
| 56 "//ui/gfx", | 58 "//ui/gfx", |
| 57 "//ui/gfx:test_support", | 59 "//ui/gfx:test_support", |
| 58 ] | 60 ] |
| 59 } | 61 } |
| OLD | NEW |