Home | History | Annotate | Download | only in ijar
      1 # Copyright 2015 The Android Open Source Project
      2 #
      3 # The rest of files in this directory comes from
      4 # https://github.com/bazelbuild/bazel/tree/master/third_party/ijar
      5 
      6 LOCAL_PATH:= $(call my-dir)
      7 
      8 include $(CLEAR_VARS)
      9 LOCAL_CPP_EXTENSION := .cc
     10 LOCAL_SRC_FILES := classfile.cc ijar.cc zip.cc
     11 LOCAL_CFLAGS += -Wall -Werror
     12 LOCAL_SHARED_LIBRARIES := libz-host
     13 LOCAL_MODULE := ijar
     14 # libc++ is not supported for TARGET_BUILD_APPS builds
     15 LOCAL_CXX_STL := libstdc++
     16 include $(BUILD_HOST_EXECUTABLE)
     17