~xnox/ubuntu/trusty/gcc-arm-linux-androideabi/dima

« back to all changes in this revision

Viewing changes to android/build/tools/zipalign/Android.mk

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2013-07-05 10:12:24 UTC
  • Revision ID: package-import@ubuntu.com-20130705101224-6qo3e8jbz8p31aa1
Tags: upstream-0.20130705.1
ImportĀ upstreamĀ versionĀ 0.20130705.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
# Copyright 2008 The Android Open Source Project
 
3
#
 
4
# Zip alignment tool
 
5
#
 
6
 
 
7
LOCAL_PATH:= $(call my-dir)
 
8
include $(CLEAR_VARS)
 
9
 
 
10
LOCAL_SRC_FILES := \
 
11
        ZipAlign.cpp \
 
12
        ZipEntry.cpp \
 
13
        ZipFile.cpp
 
14
 
 
15
LOCAL_C_INCLUDES += external/zlib
 
16
 
 
17
LOCAL_STATIC_LIBRARIES := \
 
18
        libutils \
 
19
        libcutils
 
20
 
 
21
ifeq ($(HOST_OS),linux)
 
22
LOCAL_LDLIBS += -lrt
 
23
endif
 
24
 
 
25
ifneq ($(strip $(USE_MINGW)),)
 
26
LOCAL_STATIC_LIBRARIES += libz
 
27
else
 
28
LOCAL_LDLIBS += -lz
 
29
endif
 
30
 
 
31
LOCAL_MODULE := zipalign
 
32
 
 
33
include $(BUILD_HOST_EXECUTABLE)
 
34