# 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("arc_power_control") {
sources = [
"arc_power_control_handler.cc",
"arc_power_control_handler.h",
"arc_power_control_ui.cc",
"arc_power_control_ui.h",
]
public_deps = [
"//ash/components/arc",
"//ash/components/arc/mojom",
"//base",
"//chrome/browser:browser_public_dependencies",
"//chrome/common",
"//content/public/browser",
"//content/public/common",
"//ui/aura",
"//ui/events",
"//ui/wm/public",
]
deps = [
"//ash/components/arc/session",
"//chrome/browser:browser_process",
"//chrome/browser:resources",
"//chrome/browser/ash/arc",
"//chrome/browser/ash/arc/instance_throttle",
"//chrome/browser/ash/arc/tracing",
"//chrome/browser/profiles:profile",
"//chromeos/ash/components/throttle",
"//services/network/public/mojom:url_loader_base",
"//ui/base",
]
}