blob: 92c1c6f9633256e465129c77933816e348995c75 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(current_os == "linux")
zx_library("usbhost") {
host = true
static = false
sources = [ "usbhost.c" ]
}
zx_library("usbhost-static") {
host = true
static = true
sdk = "static"
sdk_headers = [ "usbhost/usbhost.h" ]
sources = [ "usbhost.c" ]
}