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.
72 lines
1.5 KiB
72 lines
1.5 KiB
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "gallery2_jni_defaults",
|
|
product_specific: true,
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Werror",
|
|
|
|
// to fix implicit conversion from 'int' to 'char', (255 to -1, 128 to -128)
|
|
"-Wno-error=constant-conversion",
|
|
|
|
"-Wno-unused-parameter",
|
|
],
|
|
header_libs: ["jni_headers"],
|
|
sdk_version: "9",
|
|
shared_libs: ["liblog"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libjni_eglfence",
|
|
defaults: ["gallery2_jni_defaults"],
|
|
|
|
cflags: ["-DEGL_EGLEXT_PROTOTYPES"],
|
|
shared_libs: ["libEGL"],
|
|
srcs: ["jni_egl_fence.cpp"],
|
|
}
|
|
|
|
// Filtershow
|
|
cc_library_shared {
|
|
name: "libjni_filtershow_filters",
|
|
defaults: ["gallery2_jni_defaults"],
|
|
|
|
srcs: [
|
|
"filters/gradient.c",
|
|
"filters/saturated.c",
|
|
"filters/exposure.c",
|
|
"filters/edge.c",
|
|
"filters/contrast.c",
|
|
"filters/hue.c",
|
|
"filters/shadows.c",
|
|
"filters/highlight.c",
|
|
"filters/hsv.c",
|
|
"filters/vibrance.c",
|
|
"filters/geometry.c",
|
|
"filters/negative.c",
|
|
"filters/redEyeMath.c",
|
|
"filters/fx.c",
|
|
"filters/wbalance.c",
|
|
"filters/redeye.c",
|
|
"filters/bwfilter.c",
|
|
"filters/tinyplanet.cc",
|
|
"filters/kmeans.cc",
|
|
],
|
|
|
|
cflags: [
|
|
"-ffast-math",
|
|
"-O3",
|
|
"-funroll-loops",
|
|
],
|
|
shared_libs: ["libjnigraphics"],
|
|
arch: {
|
|
arm: {
|
|
instruction_set: "arm",
|
|
},
|
|
},
|
|
}
|