summaryrefslogtreecommitdiff
path: root/Android.bp
blob: 33fad46f1592b49e71f54dbaa9ed625d538f2540 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
java_genrule {
    name: "debian.mime.types.minimized",
    visibility: [
        "//visibility:public",
    ],
    out: ["debian.mime.types"],
    srcs: [
        "mime.types",
    ],
    //    strip comments            normalize whitepace       drop empty lines
    cmd: "awk '{gsub(/#.*$$/,\"\"); $$1=$$1; print;}' $(in) | grep ' ' > $(out)",
}