29 lines
461 B
Plaintext
29 lines
461 B
Plaintext
cc_library {
|
|
name: "libtombstone_proto",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Wthread-safety",
|
|
"-Werror",
|
|
],
|
|
|
|
compile_multilib: "both",
|
|
|
|
proto: {
|
|
export_proto_headers: true,
|
|
type: "lite",
|
|
},
|
|
|
|
srcs: [
|
|
"tombstone.proto",
|
|
],
|
|
|
|
stl: "libc++_static",
|
|
apex_available: [
|
|
"com.android.runtime",
|
|
],
|
|
|
|
recovery_available: true,
|
|
vendor_ramdisk_available: true,
|
|
}
|