blob: 8a52b909eaa5546c7b35f7a83f48ee590256541c [file] [log] [blame]
Jorge E. Moreira32f2a0e2018-04-25 18:05:43 -07001//
2// Copyright (C) 2017 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
Greg Hartmana1227552017-10-19 17:28:08 -070016cc_library_host_static {
17 name: "libusbip",
18 srcs: [
19 "client.cpp",
20 "device_pool.cpp",
21 "messages.cpp",
22 "server.cpp",
23 "vhci_instrument.cpp",
24 ],
25 header_libs: [
26 "cuttlefish_glog",
27 ],
Greg Hartmance872ef2017-12-04 22:51:47 -080028 shared_libs: [
29 "libcuttlefish_fs",
Greg Hartmance872ef2017-12-04 22:51:47 -080030 "libbase",
Greg Hartmana1227552017-10-19 17:28:08 -070031 ],
Greg Hartmance872ef2017-12-04 22:51:47 -080032 static_libs: [
33 "libgflags",
34 ],
35 defaults: ["cuttlefish_host_only"],
Greg Hartmana1227552017-10-19 17:28:08 -070036}