Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 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) |
Colin Cross | b15149c | 2015-11-26 14:08:34 -0800 | [diff] [blame] | 9 | LOCAL_CPP_EXTENSION := .cc |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 10 | LOCAL_SRC_FILES := classfile.cc ijar.cc zip.cc |
| 11 | LOCAL_CFLAGS += -Wall |
| 12 | LOCAL_SHARED_LIBRARIES := libz-host |
| 13 | LOCAL_MODULE := ijar |
Colin Cross | b15149c | 2015-11-26 14:08:34 -0800 | [diff] [blame] | 14 | # libc++ is not supported for TARGET_BUILD_APPS builds |
| 15 | LOCAL_CXX_STL := libstdc++ |
Shinichiro Hamaji | 89b255a | 2015-11-09 16:47:42 +0900 | [diff] [blame] | 16 | include $(BUILD_HOST_EXECUTABLE) |