mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-25 06:46:09 +03:00
27 lines
805 B
Plaintext
27 lines
805 B
Plaintext
# Copyright 2017 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") {
|
|
sources = [
|
|
"favicon_attributes_provider.h",
|
|
"favicon_attributes_provider.mm",
|
|
"favicon_attributes_with_payload.h",
|
|
"favicon_attributes_with_payload.mm",
|
|
]
|
|
deps = [
|
|
"resources:default_favicon",
|
|
"resources:default_world_favicon",
|
|
"resources:default_world_favicon_incognito",
|
|
"resources:default_world_favicon_regular",
|
|
"//base",
|
|
"//components/favicon/core",
|
|
"//components/favicon_base",
|
|
"//ios/chrome/browser/favicon",
|
|
"//ios/chrome/browser/ui:ui_util",
|
|
"//ios/chrome/common/favicon",
|
|
"//url",
|
|
]
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|