40 lines
934 B
Plaintext
40 lines
934 B
Plaintext
//
|
|
// SPDX-FileCopyrightText: 2021 The Android Open Source Project
|
|
// SPDX-FileCopyrightText: 2024 The LineageOS Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
cc_binary {
|
|
name: "android.hardware.usb.gadget-service.mediatek",
|
|
relative_install_path: "hw",
|
|
init_rc: ["android.hardware.usb.gadget-service.rc"],
|
|
vintf_fragments: [
|
|
"android.hardware.usb.gadget-service.xml",
|
|
],
|
|
vendor: true,
|
|
srcs: [
|
|
"service_gadget.cpp",
|
|
"UsbGadget.cpp",
|
|
],
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"liblog",
|
|
"libutils",
|
|
"android.frameworks.stats-V1-ndk",
|
|
"android.hardware.usb.gadget-V1-ndk",
|
|
"libcutils",
|
|
"libbinder_ndk",
|
|
],
|
|
static_libs: [
|
|
"libpixelusb-aidl",
|
|
],
|
|
proprietary: true,
|
|
export_shared_lib_headers: [
|
|
"android.frameworks.stats-V1-ndk",
|
|
],
|
|
}
|