chromium/chromeos/ash/components/osauth/public/BUILD.gn

# Copyright 2023 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("//testing/test.gni")

assert(is_chromeos_ash,
       "Non-ChromeOS builds cannot depend on //chromeos/ash/components/osauth")

source_set("public") {
  deps = [
    "//base",
    "//chromeos/ash/components/login/auth/public:authpublic",
    "//components/account_id",
  ]
  sources = [
    "auth_attempt_consumer.h",
    "auth_engine_api.h",
    "auth_factor_engine.h",
    "auth_factor_engine_factory.h",
    "auth_factor_status_consumer.h",
    "auth_hub.h",
    "auth_parts.h",
    "auth_policy_connector.h",
    "auth_session_storage.h",
    "common_types.h",
    "cryptohome_core.h",
    "request/auth_request.h",
    "string_utils.cc",
    "string_utils.h",
  ]
}