blob: b5fe1f1e62c46249fd122844ce51d11fe457bb64 [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/features.gni")
source_set("bluetooth_system") {
visibility = [
"//services/device:lib",
"//services/device/bluetooth:bluetooth_system_tests",
]
sources = [
"bluetooth_system.cc",
"bluetooth_system.h",
"bluetooth_system_factory.cc",
"bluetooth_system_factory.h",
]
public_deps = [
"//services/device/public/mojom",
]
deps = [
"//base",
"//dbus",
"//device/bluetooth",
]
}
source_set("bluetooth_system_tests") {
testonly = true
sources = [
"bluetooth_system_unittest.cc",
]
deps = [
":bluetooth_system",
"//base/test:test_support",
"//dbus",
"//device/bluetooth",
"//net",
"//services/device:test_support",
"//testing/gtest",
]
}