# 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("mgs") {
  sources = [
    "managed_guest_session_utils.cc",
    "managed_guest_session_utils.h",
  ]
  deps = [ "//chromeos/ash/components/login/login_state" ]
}

static_library("test_support") {
  testonly = true
  sources = [
    "managed_guest_session_test_utils.cc",
    "managed_guest_session_test_utils.h",
  ]
  deps = [ "//chromeos/ash/components/login/login_state" ]
}
