chromium/chromeos/ash/components/dbus/virtual_file_provider/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")

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

component("virtual_file_provider") {
  output_name = "ash_virtual_file_provider"
  defines = [ "IS_ASH_DBUS_VIRTUAL_FILE_PROVIDER_IMPL" ]
  deps = [
    "//base",
    "//chromeos/dbus/common",
    "//dbus",
  ]
  sources = [
    "fake_virtual_file_provider_client.cc",
    "fake_virtual_file_provider_client.h",
    "virtual_file_provider_client.cc",
    "virtual_file_provider_client.h",
  ]
}