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.
52 lines
1.1 KiB
52 lines
1.1 KiB
//#################### compile displaymanager_jni #####################
|
|
cc_library_shared {
|
|
name:"libdisplaymanager_jni",
|
|
|
|
shared_libs:[
|
|
"libutils",
|
|
"libcutils",
|
|
"libbinder",
|
|
"liblog",
|
|
"libandroid",
|
|
"libdl",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libc++",
|
|
"libhidlmemory",
|
|
"android.hidl.memory@1.0",
|
|
"android.hidl.allocator@1.0",
|
|
"libdisplay_client",
|
|
],
|
|
|
|
cflags: [
|
|
"-Wno-unused-parameter",
|
|
"-pipe",
|
|
"-fstack-protector-all",
|
|
"-Wno-format-nonliteral",
|
|
],
|
|
|
|
ldflags: [
|
|
"-s",
|
|
],
|
|
|
|
header_libs: ["jni_headers"],
|
|
|
|
include_dirs:[
|
|
"frameworks/base/core/jni",
|
|
"system/core/include",
|
|
"system/core/include/utils",
|
|
"frameworks/native/include",
|
|
"frameworks/native/libs/nativewindow/include",
|
|
"frameworks/native/libs/ui/include",
|
|
"system/libhidl/transport/token/1.0/utils/include/",
|
|
"external/freetype/include",
|
|
"external/freetype/include/freetype",
|
|
],
|
|
|
|
srcs:[
|
|
"*.cpp",
|
|
]
|
|
}
|
|
|