| # Copyright 2022 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("tangible_sync") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| sources = [ |
| "tangible_sync_coordinator.h", |
| "tangible_sync_coordinator.mm", |
| "tangible_sync_mediator.h", |
| "tangible_sync_mediator.mm", |
| "tangible_sync_mediator_delegate.h", |
| ] |
| deps = [ |
| ":signin_ui", |
| "//base", |
| "//components/consent_auditor", |
| "//components/signin/public/identity_manager/objc", |
| "//components/sync/service", |
| "//components/unified_consent", |
| "//ios/chrome/app/application_delegate:app_state_header", |
| "//ios/chrome/browser/consent_auditor", |
| "//ios/chrome/browser/first_run", |
| "//ios/chrome/browser/shared/model/browser", |
| "//ios/chrome/browser/shared/model/browser_state", |
| "//ios/chrome/browser/shared/public/commands", |
| "//ios/chrome/browser/shared/ui/elements:activity_overlay", |
| "//ios/chrome/browser/signin", |
| "//ios/chrome/browser/sync", |
| "//ios/chrome/browser/ui/authentication", |
| "//ios/chrome/browser/ui/authentication/signin:signin_headers", |
| "//ios/chrome/browser/unified_consent", |
| ] |
| public_deps = |
| [ "//ios/chrome/browser/ui/first_run:interruptible_chrome_coordinator" ] |
| } |
| |
| source_set("signin_ui") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| sources = [ |
| "tangible_sync_consumer.h", |
| "tangible_sync_view_controller.h", |
| "tangible_sync_view_controller.mm", |
| "tangible_sync_view_controller_delegate.h", |
| ] |
| deps = [ |
| "//components/password_manager/core/common:features", |
| "//components/signin/public/base", |
| "//ios/chrome/app/strings", |
| "//ios/chrome/browser/shared/ui/elements", |
| "//ios/chrome/browser/shared/ui/symbols", |
| "//ios/chrome/browser/ui/authentication", |
| "//ios/chrome/browser/ui/first_run:field_trial", |
| "//ios/chrome/common/ui/colors", |
| "//ios/chrome/common/ui/promo_style", |
| "//ios/chrome/common/ui/util", |
| "//net", |
| "//ui/base", |
| "//url", |
| ] |
| } |