| # 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") | |
| config("headers.config") { | |
| include_dirs = [ "include" ] | |
| } | |
| static_library("usbhost") { | |
| sources = [ "usbhost.c" ] | |
| public = [ "include/usbhost/usbhost.h" ] | |
| public_configs = [ ":headers.config" ] | |
| } |