android_system_core/cpio/Android.bp
Yi-Yo Chiang 288f9eec0f Make mkbootfs self-contained
Now that mkbootfs is in prebuilt build tools, make it have no dynamic
dependency so that the binary is portable.

Bug: 184490452
Test: Presubmit
Change-Id: Ida4ee9af3c51ba9d163cf9c1e7b7098fd24e0de1
2021-05-02 19:36:23 +08:00

19 lines
349 B
Text

// Copyright 2005 The Android Open Source Project
package {
default_applicable_licenses: ["Android-Apache-2.0"],
}
cc_binary_host {
name: "mkbootfs",
srcs: ["mkbootfs.c"],
cflags: ["-Werror"],
static_libs: [
"libbase",
"libcutils",
"liblog",
],
dist: {
targets: ["dist_files"],
},
}