# 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, "Non-ChromeOS builds cannot depend on //ash")
static_library("game_mode") {
sources = [
"game_mode_controller.cc",
"game_mode_controller.h",
]
deps = [
"//ash",
"//ash/components/arc:arc_base_utils",
"//base",
"//chromeos/ash/components/borealis",
"//chromeos/ash/components/dbus/resourced",
"//dbus",
"//ui/views",
]
}