| # Copyright 2024 The Chromium Authors |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//build/config/chromeos/ui_mode.gni") |
| import("//chromeos/ash/components/assistant/assistant.gni") |
| |
| assert(is_chromeos) |
| |
| static_library("auth") { |
| sources = [ |
| "active_session_fingerprint_client_impl.cc", |
| "active_session_fingerprint_client_impl.h", |
| "cryptohome_pin_engine.cc", |
| "cryptohome_pin_engine.h", |
| "legacy_fingerprint_engine.cc", |
| "legacy_fingerprint_engine.h", |
| ] |
| |
| public_deps = [ "//chrome/browser:browser_public_dependencies" ] |
| |
| deps = [ |
| "//ash/constants", |
| "//base", |
| "//chrome/browser/ash/login/quick_unlock", |
| "//chrome/browser/ash/login/users", |
| "//chrome/browser/ash/profiles", |
| "//chrome/browser/profiles:profile", |
| "//chrome/browser/ui/ash/login", |
| "//chrome/browser/ui/webui/ash/settings/pages/privacy", |
| "//chromeos/ash/components/cryptohome", |
| "//chromeos/ash/components/dbus/userdataauth", |
| "//chromeos/ash/components/dbus/userdataauth:userdataauth_proto", |
| "//chromeos/ash/components/login/auth", |
| "//components/account_id", |
| "//components/prefs", |
| "//components/user_manager", |
| ] |
| |
| allow_circular_includes_from = [ |
| "//chrome/browser/ash/login/quick_unlock", |
| "//chrome/browser/ui/ash/login", |
| "//chrome/browser/ui/webui/ash/settings/pages/privacy", |
| ] |
| } |