| 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", | |
| 11 "favicon_attributes_provider.mm", | |
| 12 "favicon_client_impl.h", | 8 "favicon_client_impl.h", |
| 13 "favicon_client_impl.mm", | 9 "favicon_client_impl.mm", |
| 14 "favicon_loader.h", | 10 "favicon_loader.h", |
| 15 "favicon_loader.mm", | 11 "favicon_loader.mm", |
| 16 "favicon_service_factory.cc", | 12 "favicon_service_factory.cc", |
| 17 "favicon_service_factory.h", | 13 "favicon_service_factory.h", |
| 18 "ios_chrome_favicon_loader_factory.h", | 14 "ios_chrome_favicon_loader_factory.h", |
| 19 "ios_chrome_favicon_loader_factory.mm", | 15 "ios_chrome_favicon_loader_factory.mm", |
| 20 "ios_chrome_large_icon_cache_factory.cc", | 16 "ios_chrome_large_icon_cache_factory.cc", |
| 21 "ios_chrome_large_icon_cache_factory.h", | 17 "ios_chrome_large_icon_cache_factory.h", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 52 deps = [ | 48 deps = [ |
| 53 ":favicon", | 49 ":favicon", |
| 54 "//base", | 50 "//base", |
| 55 "//components/favicon_base", | 51 "//components/favicon_base", |
| 56 "//skia", | 52 "//skia", |
| 57 "//testing/gtest", | 53 "//testing/gtest", |
| 58 "//ui/gfx", | 54 "//ui/gfx", |
| 59 "//ui/gfx:test_support", | 55 "//ui/gfx:test_support", |
| 60 ] | 56 ] |
| 61 } | 57 } |
| OLD | NEW |