chromium/chromeos/ash/components/telemetry_extension/management/BUILD.gn

# Copyright 2023 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, "Telemetry Services are ash-chrome only")

source_set("management") {
  sources = [
    "telemetry_management_service_ash.cc",
    "telemetry_management_service_ash.h",
  ]

  deps = [
    "//base",
    "//chromeos/ash/components/audio",
    "//chromeos/crosapi/mojom",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "telemetry_management_service_ash_unittest.cc" ]
  deps = [
    ":management",
    "//base",
    "//base/test:test_support",
    "//chromeos/ash/components/audio",
    "//chromeos/crosapi/mojom",
    "//testing/gmock",
    "//testing/gtest",
  ]
}