68e1093028
Leaving the FUSE logic intact was confusing to OEMs, who expected that it would still work and pass CTS. Remove all the FUSE logic and leave a comment block about why the wrapper exists. Also use new Android.bp makefile format. Test: builds, boots Bug: 63524725 Change-Id: I8b2a4fa0227109d65689c43302dc6fa40394ff58
17 lines
299 B
Text
17 lines
299 B
Text
cc_binary {
|
|
srcs: ["sdcard.cpp"],
|
|
name: "sdcard",
|
|
cflags: [
|
|
"-Wall",
|
|
"-Wno-unused-parameter",
|
|
"-Werror",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libminijail",
|
|
],
|
|
sanitize: {
|
|
misc_undefined: ["integer"],
|
|
},
|
|
}
|