aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-03-29 00:40:18 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-29 00:40:18 +0000
commit14c349bda90ff568bfd8b6bac617483ebd81d131 (patch)
tree2fd9be72fe9b9aa30236ab55346a2bfdae263d12
parent9ab9d8598abab75d34286274520815fe454252a9 (diff)
parent1751d0ef092a7566042ab5f662e385c6077c040c (diff)
downloadbzip2-14c349bda90ff568bfd8b6bac617483ebd81d131.tar.gz
Merge "Build bzip2/bunzip2/bzcat." am: fc47d4667b am: 0600e5668b
am: 1751d0ef09 Change-Id: Iad7b2147274ba0e8512b29f69edc3e0560cd819d
-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",
+ ],
+}