android_system_core/mkbootfs/Android.bp
Elliott Hughes 132b1ecdfd Switch mkbootfs to C++.
Minimum changes just to get it to compile as C++, no real cleanup.

Change-Id: I8ff3fa35a07cdc9a6a246e79e33581e5d6598833
2024-10-29 22:12:01 +00:00

19 lines
351 B
Text

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