blob: a0bf624c6455e9abdb5844151f2ff950a4b8d6d0 [file] [log] [blame]
Bob Badoure539dba2021-02-12 17:07:05 -08001package {
2 // See: http://go/android-license-faq
3 // A large-scale-change added 'default_applicable_licenses' to import
4 // all of the 'license_kinds' from "frameworks_base_license"
5 // to get the below license kinds:
6 // SPDX-license-identifier-Apache-2.0
7 default_applicable_licenses: ["frameworks_base_license"],
8}
9
Colin Cross37d4c002019-03-28 22:31:35 -070010genrule {
11 name: "uiautomator-last-released-api",
12 srcs: ["api/*.txt"],
13 cmd: "cp -f $$(echo $(in) | tr \" \" \"\\n\" | sort -n | tail -1) $(genDir)/last-released-api.txt",
14 out: [
15 "last-released-api.txt",
16 ],
17}
18
19filegroup {
20 name: "uiautomator-current-api",
21 srcs: ["api/current.txt"],
22}
23
24filegroup {
25 name: "uiautomator-removed-api",
26 srcs: ["api/removed.txt"],
27}