android_system_core/shell_and_utilities/Android.bp
Jordan R Abrahams-Whitehead 205bb15e86 Add cpu-target-features binary
This is a very small executable which is used to determine what CPU
target features are enabled for a given compiler toolchain. The actual
source code is in bionic.

Bug: 354747380
Test: Installed on to cuttlefish and ran for x86_64

Change-Id: I348060054ae4427d1ae903a384340413fe714c4c
2024-08-20 20:48:34 +00:00

71 lines
1.4 KiB
Text

package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
phony {
name: "shell_and_utilities",
required: [
"shell_and_utilities_system",
"shell_and_utilities_recovery",
"shell_and_utilities_vendor",
],
}
phony {
name: "shell_and_utilities_system",
required: [
"auditctl",
"awk",
"bc",
"bzip2",
"cpu-target-features",
"fsck.exfat",
"ldd",
"logwrapper",
"mini-keyctl",
"mkfs.exfat",
"mkshrc",
"newfs_msdos",
"reboot",
"settaskprofile",
"sh",
"simpleperf",
"simpleperf_app_runner",
"tcpdump",
"toolbox",
"toybox",
"ziptool",
],
}
phony {
name: "shell_and_utilities_recovery",
required: [
"sh.recovery",
"toolbox.recovery",
"toybox.recovery",
"ziptool.recovery",
],
}
phony {
name: "shell_and_utilities_vendor",
required: [
"awk_vendor",
"logwrapper_vendor",
"mkshrc_vendor",
"sh_vendor",
"toolbox_vendor",
"toybox_vendor",
],
}
// shell and utilities for first stage console. The list of binaries are
// enough for debugging purposes.
phony {
name: "shell_and_utilities_vendor_ramdisk",
required: [
"sh.vendor_ramdisk",
"toybox.vendor_ramdisk",
],
}