You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
2.6 KiB
141 lines
2.6 KiB
4 months ago
|
|
||
|
|
||
|
// Touchpad implementation.
|
||
|
|
||
|
package {
|
||
|
// See: http://go/android-license-faq
|
||
|
// A large-scale-change added 'default_applicable_licenses' to import
|
||
|
// all of the 'license_kinds' from "frameworks_native_license"
|
||
|
// to get the below license kinds:
|
||
|
// SPDX-license-identifier-Apache-2.0
|
||
|
default_applicable_licenses: ["frameworks_native_license"],
|
||
|
}
|
||
|
|
||
|
src = [
|
||
|
"EvdevInjector.cpp",
|
||
|
"VirtualTouchpadEvdev.cpp",
|
||
|
]
|
||
|
|
||
|
shared_libs = [
|
||
|
"libbase",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
]
|
||
|
|
||
|
header_libraries = [
|
||
|
"jni_headers",
|
||
|
"libdvr_headers",
|
||
|
]
|
||
|
|
||
|
cc_library {
|
||
|
srcs: src,
|
||
|
export_include_dirs: ["include"],
|
||
|
shared_libs: shared_libs,
|
||
|
header_libs: header_libraries,
|
||
|
cflags: [
|
||
|
"-DLOG_TAG=\"VrVirtualTouchpad\"",
|
||
|
"-Wall",
|
||
|
"-Werror",
|
||
|
],
|
||
|
name: "libvirtualtouchpad",
|
||
|
}
|
||
|
|
||
|
// Touchpad unit tests.
|
||
|
|
||
|
test_static_libs = [
|
||
|
"libcutils",
|
||
|
"libvirtualtouchpad",
|
||
|
"libbase",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
]
|
||
|
|
||
|
test_src_files = ["tests/VirtualTouchpad_test.cpp"]
|
||
|
|
||
|
cc_test {
|
||
|
srcs: test_src_files,
|
||
|
static_libs: test_static_libs,
|
||
|
header_libs: header_libraries,
|
||
|
cflags: [
|
||
|
"-Wall",
|
||
|
"-Werror",
|
||
|
],
|
||
|
host_ldlibs: [
|
||
|
"-llog",
|
||
|
],
|
||
|
name: "VirtualTouchpad_test",
|
||
|
stl: "libc++_static",
|
||
|
}
|
||
|
|
||
|
// Service.
|
||
|
|
||
|
service_src = [
|
||
|
"main.cpp",
|
||
|
"VirtualTouchpadService.cpp",
|
||
|
":virtualtouchpad_aidl",
|
||
|
]
|
||
|
|
||
|
service_static_libs = [
|
||
|
"libcutils",
|
||
|
"libvirtualtouchpad",
|
||
|
]
|
||
|
|
||
|
service_shared_libs = [
|
||
|
"libbase",
|
||
|
"libbinder",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
]
|
||
|
|
||
|
cc_binary {
|
||
|
srcs: service_src,
|
||
|
static_libs: service_static_libs,
|
||
|
shared_libs: service_shared_libs,
|
||
|
header_libs: header_libraries,
|
||
|
cflags: [
|
||
|
"-DLOG_TAG=\"VrVirtualTouchpad\"",
|
||
|
"-Wall",
|
||
|
"-Werror",
|
||
|
],
|
||
|
host_ldlibs: ["-llog"],
|
||
|
name: "virtual_touchpad",
|
||
|
init_rc: ["virtual_touchpad.rc"],
|
||
|
compile_multilib: "64",
|
||
|
stl: "libc++_static",
|
||
|
}
|
||
|
|
||
|
// Touchpad client library.
|
||
|
|
||
|
client_src = [
|
||
|
"VirtualTouchpadClient.cpp",
|
||
|
"DvrVirtualTouchpadClient.cpp",
|
||
|
":virtualtouchpad_aidl",
|
||
|
]
|
||
|
|
||
|
client_shared_libs = [
|
||
|
"libbase",
|
||
|
"libbinder",
|
||
|
"liblog",
|
||
|
"libutils",
|
||
|
]
|
||
|
|
||
|
cc_library {
|
||
|
srcs: client_src,
|
||
|
shared_libs: client_shared_libs,
|
||
|
header_libs: header_libraries,
|
||
|
cflags: [
|
||
|
"-DLOG_TAG=\"VirtualTouchpadClient\"",
|
||
|
"-Wall",
|
||
|
"-Werror",
|
||
|
],
|
||
|
host_ldlibs: ["-llog"],
|
||
|
name: "libvirtualtouchpadclient",
|
||
|
export_include_dirs: ["include"],
|
||
|
}
|
||
|
|
||
|
filegroup {
|
||
|
name: "virtualtouchpad_aidl",
|
||
|
srcs: ["aidl/android/dvr/IVirtualTouchpadService.aidl"],
|
||
|
path: "aidl",
|
||
|
}
|