mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
|
# 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_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/image_fetcher/core",
|
||
|
"//components/image_fetcher/ios",
|
||
|
"//components/keyed_service/core",
|
||
|
"//components/keyed_service/ios",
|
||
|
"//components/resources",
|
||
|
"//ios/chrome/browser",
|
||
|
"//ios/chrome/browser/browser_state",
|
||
|
"//ios/chrome/browser/history",
|
||
|
"//ios/chrome/browser/ui:ui_util",
|
||
|
"//ios/chrome/common/favicon",
|
||
|
"//ios/web",
|
||
|
"//skia",
|
||
|
"//ui/base",
|
||
|
"//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",
|
||
|
]
|
||
|
}
|