910e62b5创建于 1月15日历史提交
# Copyright 2019 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("properties") {
  visibility = [ "//components/dbus/*" ]
  sources = [
    "dbus_properties.cc",
    "dbus_properties.h",
    "success_barrier_callback.cc",
    "success_barrier_callback.h",
  ]
  defines = [ "IS_COMPONENTS_DBUS_IMPL" ]
  deps = [
    "//base",
    "//base:i18n",
    "//components/dbus/utils",
  ]
  public_deps = [ "//dbus" ]
}

source_set("unit_tests") {
  testonly = true
  visibility = [ "//components/dbus:unit_tests" ]
  sources = [ "success_barrier_callback_unittest.cc" ]
  deps = [
    ":properties",
    "//base",
    "//testing/gtest",
  ]
}