blob: f87965860ce18a367950ece2470eeb9e43b8de10 [file] [log] [blame]
//
// Copyright 2010 The Android Open Source Project
//
// Opaque Binary Blob (OBB) Tool
//
cc_binary_host {
name: "obbtool",
srcs: ["Main.cpp"],
cflags: [
"-Wall",
"-Werror",
"-Wno-mismatched-tags",
],
static_libs: [
"libandroidfw",
"libutils",
"libcutils",
"liblog",
],
// This tool is prebuilt if we're doing an app-only build.
product_variables: {
unbundled_build: {
enabled: false,
},
},
}
//####################################################
cc_binary_host {
name: "pbkdf2gen",
cflags: [
"-Wall",
"-Werror",
"-Wno-mismatched-tags",
],
srcs: ["pbkdf2gen.cpp"],
static_libs: ["libcrypto"],
// This tool is prebuilt if we're doing an app-only build.
product_variables: {
unbundled_build: {
enabled: false,
},
},
}