# 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.

assert(is_chromeos)

static_library("kiosk") {
  sources = [
    "kiosk_utils.cc",
    "kiosk_utils.h",
  ]
  deps = [ "//components/user_manager" ]
}

static_library("test_support") {
  testonly = true
  sources = [
    "kiosk_test_utils.cc",
    "kiosk_test_utils.h",
  ]
  deps = [
    "//components/account_id",
    "//components/user_manager",
    "//components/user_manager:test_support",
  ]
}
