Minimum changes just to get it to compile as C++, no real cleanup. Change-Id: I8ff3fa35a07cdc9a6a246e79e33581e5d6598833
19 lines
351 B
Text
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"],
|
|
},
|
|
}
|