Georg Neis | 3ac83996 | 2024-07-24 03:15:04 | [diff] [blame] | 1 | # 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 Neis | 3ac83996 | 2024-07-24 03:15:04 | [diff] [blame] | 5 | import("//chromeos/dbus/config/use_real_dbus_clients.gni") |
| 6 | |
Georg Neis | d557a9c | 2025-01-28 04:22:13 | [diff] [blame] | 7 | assert(is_chromeos) |
Georg Neis | 3ac83996 | 2024-07-24 03:15:04 | [diff] [blame] | 8 | assert(!is_official_build) |
| 9 | assert(!use_real_dbus_clients) |
| 10 | |
| 11 | static_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 Kurimoto | 5890445 | 2024-08-28 05:36:56 | [diff] [blame] | 33 | "//chrome/browser/ui/webui/ash/bluetooth", |
Georg Neis | 3ac83996 | 2024-07-24 03:15:04 | [diff] [blame] | 34 | "//chromeos/ash/components/dbus", |
| 35 | "//chromeos/ash/components/dbus/audio", |
| 36 | "//chromeos/dbus/power", |
| 37 | ] |
| 38 | } |