blob: 44df70e89d541cacc74d7dc47147f182d1c2528e [file] [log] [blame]
Bob Badour051ef782021-02-12 17:07:05 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_packages_PrintSpooler_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: [
8 "frameworks_base_packages_PrintSpooler_license",
9 ],
10}
11
Dan Willemsen4888b1f2018-05-09 20:30:33 -070012cc_library_shared {
13 name: "libprintspooler_jni",
14
15 srcs: ["com_android_printspooler_util_BitmapSerializeUtils.cpp"],
16
17 shared_libs: [
18 "libnativehelper",
19 "libjnigraphics",
20 "liblog",
21 ],
22
23 cflags: [
24 "-Wall",
25 "-Werror",
26 "-Wunused",
27 "-Wunreachable-code",
28 ],
29}