1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5phony {
6    name: "shell_and_utilities",
7    required: [
8        "shell_and_utilities_system",
9        "shell_and_utilities_recovery",
10        "shell_and_utilities_vendor",
11    ],
12}
13
14phony {
15    name: "shell_and_utilities_system",
16    required: [
17        "auditctl",
18        "awk",
19        "bc",
20        "bzip2",
21        "ldd",
22        "logwrapper",
23        "mini-keyctl",
24        "mkshrc",
25        "newfs_msdos",
26        "reboot",
27        "sh",
28        "simpleperf",
29        "simpleperf_app_runner",
30        "tcpdump",
31        "toolbox",
32        "toybox",
33        "ziptool",
34    ],
35}
36
37phony {
38    name: "shell_and_utilities_recovery",
39    required: [
40        "sh.recovery",
41        "toolbox.recovery",
42        "toybox.recovery",
43        "ziptool.recovery",
44    ],
45}
46
47phony {
48    name: "shell_and_utilities_vendor",
49    required: [
50        "awk_vendor",
51        "logwrapper_vendor",
52        "mkshrc_vendor",
53        "sh_vendor",
54        "toolbox_vendor",
55        "toybox_vendor",
56    ],
57}
58
59// shell and utilities for first stage console. The list of binaries are
60// enough for debugging purposes.
61phony {
62    name: "shell_and_utilities_vendor_ramdisk",
63    required: [
64        "sh.vendor_ramdisk",
65        "toybox.vendor_ramdisk",
66    ],
67}
68