aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-03-29 00:36:31 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-03-29 00:36:31 +0000
commit0600e5668b2b1590c2f908a5c420149c6581122e (patch)
tree2fd9be72fe9b9aa30236ab55346a2bfdae263d12
parent2cb42e2caf08d109428a5a9c642eb7868734f5ad (diff)
parentfc47d4667b92f0282dda6ba459f445fcc8e88908 (diff)
downloadbzip2-o-iot-preview-5.tar.gz
am: fc47d4667b Change-Id: I4eec4fc8efa4ec63ccbc1fd5f04ec87cf798b2a7
-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",
+ ],
+}