blob: 889fecbd2ec5b54f4ddbd3254c1e7cee361512aa [file] [log] [blame]
Georg Neis3ac839962024-07-24 03:15:041# Copyright 2024 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Georg Neis3ac839962024-07-24 03:15:045import("//chromeos/dbus/config/use_real_dbus_clients.gni")
6
Georg Neisd557a9c2025-01-28 04:22:137assert(is_chromeos)
Georg Neis3ac839962024-07-24 03:15:048assert(!is_official_build)
9assert(!use_real_dbus_clients)
10
11static_library("emulator") {
12 sources = [
13 "device_emulator_message_handler.cc",
14 "device_emulator_message_handler.h",
15 "device_emulator_ui.cc",
16 "device_emulator_ui.h",
17 ]
18
19 public_deps = [
20 "//base",
21 "//chrome/browser/ash/system",
22 "//chrome/common",
23 "//chromeos/dbus/power:power_manager_proto",
24 "//content/public/browser",
25 "//content/public/common",
26 "//device/bluetooth",
27 ]
28
29 deps = [
30 "//ash/webui/common:trusted_types_util",
31 "//chrome/browser:resources",
32 "//chrome/browser/profiles:profile",
Eriko Kurimoto58904452024-08-28 05:36:5633 "//chrome/browser/ui/webui/ash/bluetooth",
Georg Neis3ac839962024-07-24 03:15:0434 "//chromeos/ash/components/dbus",
35 "//chromeos/ash/components/dbus/audio",
36 "//chromeos/dbus/power",
37 ]
38}