blob: ea55d7cf85384c3f93ae18a7fe0a3042561a90b1 [file] [log] [blame]
# Copyright 2017 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.
source_set("cpp") {
sources = [
"usb_utils.cc",
"usb_utils.h",
]
deps = [
"//device/usb",
"//device/usb/public/mojom",
]
}
static_library("test_support") {
testonly = true
sources = [
"fake_usb_device.cc",
"fake_usb_device.h",
"fake_usb_device_info.cc",
"fake_usb_device_info.h",
"fake_usb_device_manager.cc",
"fake_usb_device_manager.h",
]
deps = [
":cpp",
]
public_deps = [
"//base",
"//device/usb/public/mojom",
"//url:url",
]
}