# 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")
component("smbprovider") {
output_name = "ash_smbprovider"
defines = [ "IS_ASH_DBUS_SMBPROVIDER_IMPL" ]
public_deps = [
":proto",
"//base",
"//chromeos/dbus/common",
"//dbus",
]
sources = [
"fake_smb_provider_client.cc",
"fake_smb_provider_client.h",
"smb_provider_client.cc",
"smb_provider_client.h",
]
}
proto_library("proto") {
sources =
[ "//third_party/cros_system_api/dbus/smbprovider/directory_entry.proto" ]
proto_out_dir = "chromeos/ash/components/dbus/smbprovider"
}