aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-03-29 00:33:21 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-03-29 00:33:23 +0000
commitfc47d4667b92f0282dda6ba459f445fcc8e88908 (patch)
tree2fd9be72fe9b9aa30236ab55346a2bfdae263d12
parent2cb42e2caf08d109428a5a9c642eb7868734f5ad (diff)
parent9fa5f2d123ef61213bb74d261a982a5da30147de (diff)
downloadbzip2-fc47d4667b92f0282dda6ba459f445fcc8e88908.tar.gz
Merge "Build bzip2/bunzip2/bzcat."
-rw-r--r--Android.bp17
1 files changed, 16 insertions, 1 deletions
diff --git a/Android.bp b/Android.bp
index b0f642b..897dc77 100644
--- a/Android.bp
+++ b/Android.bp
@@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-
cc_library_static {
name: "libbz",
host_supported: true,
@@ -41,3 +40,19 @@ cc_library_static {
sdk_version: "9",
stl: "none",
}
+
+cc_binary {
+ name: "bzip2",
+ srcs: ["bzip2.c"],
+ // This is only static because we don't currently have libbz.so on device.
+ // If that changes, change this too.
+ static_libs: ["libbz"],
+ stl: "none",
+ cflags: [
+ "-Wno-unused-parameter",
+ ],
+ symlinks: [
+ "bunzip2",
+ "bzcat",
+ ],
+}