chromium/chromeos/ash/components/dbus/chunneld/BUILD.gn

# Copyright 2021 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")
import("//third_party/protobuf/proto_library.gni")

assert(is_chromeos_ash,
       "Non-Chrome-OS builds must not depend on //chromeos/ash")

component("chunneld") {
  output_name = "ash_chunneld"
  defines = [ "IS_ASH_DBUS_CHUNNELD_IMPL" ]
  deps = [
    ":proto",
    "//base",
    "//chromeos/dbus/common",
    "//dbus",
  ]
  sources = [
    "chunneld_client.cc",
    "chunneld_client.h",
    "fake_chunneld_client.cc",
    "fake_chunneld_client.h",
  ]
}

proto_library("proto") {
  sources =
      [ "//third_party/cros_system_api/dbus/chunneld/chunneld_service.proto" ]

  proto_out_dir = "chromeos/ash/components/dbus/chunneld"
}