blob: 01b0c564919e834eab908b9ee4db0a2d35c12d60 [file] [log] [blame]
# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("favicon") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"favicon_attributes.h",
"favicon_attributes.mm",
"favicon_attributes_provider.h",
"favicon_attributes_provider.mm",
"favicon_client_impl.h",
"favicon_client_impl.mm",
"favicon_loader.h",
"favicon_loader.mm",
"favicon_service_factory.cc",
"favicon_service_factory.h",
"ios_chrome_favicon_loader_factory.h",
"ios_chrome_favicon_loader_factory.mm",
"ios_chrome_large_icon_cache_factory.cc",
"ios_chrome_large_icon_cache_factory.h",
"ios_chrome_large_icon_service_factory.cc",
"ios_chrome_large_icon_service_factory.h",
"large_icon_cache.cc",
"large_icon_cache.h",
]
deps = [
"//base",
"//components/favicon/core",
"//components/favicon_base",
"//components/keyed_service/core",
"//components/keyed_service/ios",
"//ios/chrome/browser",
"//ios/chrome/browser/browser_state",
"//ios/chrome/browser/history",
"//ios/public/provider/chrome/browser",
"//ios/web",
"//skia",
"//ui/gfx",
"//url",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"large_icon_cache_unittest.cc",
]
deps = [
":favicon",
"//base",
"//components/favicon_base",
"//skia",
"//testing/gtest",
"//ui/gfx",
"//ui/gfx:test_support",
]
}