summaryrefslogtreecommitdiff
path: root/sdcard/Android.bp
blob: 10a7d16c3d63e244abe167ad263ebd6a5b08f2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

cc_binary {
    srcs: ["sdcard.cpp"],
    name: "sdcard",
    cflags: [
        "-Wall",
        "-Wno-unused-parameter",
        "-Werror",
    ],
    shared_libs: [
        "libbase",
        "libcutils",
        "libminijail",
    ],
    sanitize: {
        misc_undefined: ["integer"],
    },
}