mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-29 00:36:10 +03:00
49 lines
1.5 KiB
Plaintext
49 lines
1.5 KiB
Plaintext
|
# Copyright 2018 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.
|
||
|
|
||
|
import("//build/config/chrome_build.gni")
|
||
|
|
||
|
source_set("unified_consent") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
sources = [
|
||
|
"unified_consent_coordinator.h",
|
||
|
"unified_consent_coordinator.mm",
|
||
|
"unified_consent_mediator.h",
|
||
|
"unified_consent_mediator.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
":unified_consent_ui",
|
||
|
"//base",
|
||
|
"//ios/chrome/browser",
|
||
|
"//ios/chrome/browser/signin",
|
||
|
"//ios/chrome/browser/ui/authentication/unified_consent/identity_chooser",
|
||
|
"//ios/public/provider/chrome/browser/signin",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unified_consent_ui") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
sources = [
|
||
|
"identity_picker_view.h",
|
||
|
"identity_picker_view.mm",
|
||
|
"unified_consent_view_controller.h",
|
||
|
"unified_consent_view_controller.mm",
|
||
|
]
|
||
|
deps = [
|
||
|
"resources:identity_picker_view_arrow_down",
|
||
|
"//base",
|
||
|
"//components/google/core/browser",
|
||
|
"//ios/chrome/app/strings",
|
||
|
"//ios/chrome/browser",
|
||
|
"//ios/chrome/browser/ui:ui_util",
|
||
|
"//ios/chrome/browser/ui/authentication/unified_consent/identity_chooser:identity_chooser_ui",
|
||
|
"//ios/chrome/browser/ui/colors",
|
||
|
"//ios/chrome/browser/ui/util",
|
||
|
"//ios/chrome/browser/ui/util:constraints_ui",
|
||
|
"//ios/chrome/common",
|
||
|
"//ios/third_party/material_components_ios",
|
||
|
"//ui/base",
|
||
|
]
|
||
|
}
|