blob: f87965860ce18a367950ece2470eeb9e43b8de10 [file] [log] [blame]
Dan Willemsend3eac262017-09-08 22:47:47 -07001//
2// Copyright 2010 The Android Open Source Project
3//
4// Opaque Binary Blob (OBB) Tool
5//
6
7cc_binary_host {
8 name: "obbtool",
9
10 srcs: ["Main.cpp"],
11
12 cflags: [
13 "-Wall",
14 "-Werror",
15 "-Wno-mismatched-tags",
16 ],
17
18 static_libs: [
19 "libandroidfw",
20 "libutils",
21 "libcutils",
22 "liblog",
23 ],
24
25 // This tool is prebuilt if we're doing an app-only build.
26 product_variables: {
27 unbundled_build: {
28 enabled: false,
29 },
30 },
31}
32
33//####################################################
34cc_binary_host {
35 name: "pbkdf2gen",
36
37 cflags: [
38 "-Wall",
39 "-Werror",
40 "-Wno-mismatched-tags",
41 ],
42 srcs: ["pbkdf2gen.cpp"],
43 static_libs: ["libcrypto"],
44
45 // This tool is prebuilt if we're doing an app-only build.
46 product_variables: {
47 unbundled_build: {
48 enabled: false,
49 },
50 },
51}