| # 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) |
| |
| static_library("schedqos") { |
| sources = [ |
| "dbus_schedqos_state_handler.cc", |
| "dbus_schedqos_state_handler.h", |
| ] |
| |
| deps = [ |
| "//base", |
| "//chrome/browser/ash/system", |
| "//chromeos/ash/components/dbus/resourced", |
| "//dbus", |
| ] |
| } |
| |
| source_set("unit_tests") { |
| testonly = true |
| |
| sources = [ "dbus_schedqos_state_handler_unittest.cc" ] |
| |
| deps = [ |
| ":schedqos", |
| "//base/test:test_support", |
| "//chromeos/ash/components/dbus/resourced", |
| "//dbus", |
| "//testing/gmock", |
| "//testing/gtest", |
| ] |
| } |