c6ec9486d8
This reverts commit fc9e212f01
.
Reason for revert: Breaks multiple devices
Change-Id: I816671fd92246f85c97d00819858a74e36e2929d
46 lines
975 B
Text
46 lines
975 B
Text
// Copyright 2006 The Android Open Source Project
|
|
|
|
cc_library_headers {
|
|
name: "libhardware_headers",
|
|
header_libs: [
|
|
"libaudio_system_headers",
|
|
"libsystem_headers",
|
|
"libcutils_headers",
|
|
"libbluetooth-types-header",
|
|
],
|
|
export_header_lib_headers: [
|
|
"libaudio_system_headers",
|
|
"libsystem_headers",
|
|
"libcutils_headers",
|
|
"libbluetooth-types-header",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
vendor_available: true,
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libhardware",
|
|
|
|
srcs: ["hardware.c"],
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
"libdl",
|
|
"libvndksupport",
|
|
],
|
|
cflags: [
|
|
"-DQEMU_HARDWARE",
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
header_libs: ["libhardware_headers"],
|
|
export_header_lib_headers: ["libhardware_headers"],
|
|
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: true,
|
|
support_system_process: true,
|
|
},
|
|
}
|