summaryrefslogtreecommitdiff
path: root/cmds/uiautomator/Android.bp
blob: f9cb3dd388973d682015a0436b89aadac5f05053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
genrule {
    name: "uiautomator-last-released-api",
    srcs: ["api/*.txt"],
    cmd: "cp -f $$(echo $(in) | tr \" \" \"\\n\" | sort -n | tail -1) $(genDir)/last-released-api.txt",
    out: [
        "last-released-api.txt",
    ],
}

filegroup {
    name: "uiautomator-current-api",
    srcs: ["api/current.txt"],
}

filegroup {
    name: "uiautomator-removed-api",
    srcs: ["api/removed.txt"],
}