1// Copyright (C) 2020 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    default_applicable_licenses: [
17        "device_generic_car_emulator_usb_modeswitch_license",
18    ],
19}
20
21// See: http://go/android-license-faq
22license {
23    name: "device_generic_car_emulator_usb_modeswitch_license",
24    visibility: [":__subpackages__"],
25    license_kinds: [
26        "SPDX-license-identifier-GPL-2.0+",
27    ],
28    license_text: [
29        "LICENSE",
30    ],
31}
32
33cc_binary {
34    name: "usb_modeswitch",
35    srcs: [
36        "usb_modeswitch.c",
37    ],
38    shared_libs: [
39        "libusb",
40    ],
41    cflags: [
42        "-Wno-self-assign",
43        "-Wno-unused-parameter",
44        "-Wno-sometimes-uninitialized",
45    ],
46    vendor: true
47}
48