# 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")
assert(is_chromeos_ash)
static_library("test_support") {
testonly = true
sources = [
"apps.cc",
"apps.h",
"callback_factory.h",
"features.cc",
"features.h",
"windows.cc",
"windows.h",
]
public_deps = [
"//base",
"//base/test:test_support",
"//chrome/browser/ash/login/users:test_support",
"//components/user_manager",
"//testing/gmock",
"//ui/aura",
]
deps = [
"//ash:test_support",
"//ash/constants",
"//chrome/browser/ash/borealis",
"//chrome/browser/ash/guest_os",
"//chrome/common:chrome_features",
"//chrome/test:test_support",
"//components/exo",
"//testing/gtest",
]
}