Home | History | Annotate | Download | only in libdex
      1 # Copyright (C) 2008 The Android Open Source Project
      2 #
      3 # Licensed under the Apache License, Version 2.0 (the "License");
      4 # you may not use this file except in compliance with the License.
      5 # You may obtain a copy of the License at
      6 #
      7 #      http://www.apache.org/licenses/LICENSE-2.0
      8 #
      9 # Unless required by applicable law or agreed to in writing, software
     10 # distributed under the License is distributed on an "AS IS" BASIS,
     11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 # See the License for the specific language governing permissions and
     13 # limitations under the License.
     14 
     15 LOCAL_PATH:= $(call my-dir)
     16 
     17 dex_src_files := \
     18 	CmdUtils.cpp \
     19 	DexCatch.cpp \
     20 	DexClass.cpp \
     21 	DexDataMap.cpp \
     22 	DexDebugInfo.cpp \
     23 	DexFile.cpp \
     24 	DexInlines.cpp \
     25 	DexOptData.cpp \
     26 	DexOpcodes.cpp \
     27 	DexProto.cpp \
     28 	DexSwapVerify.cpp \
     29 	DexUtf.cpp \
     30 	InstrUtils.cpp \
     31 	Leb128.cpp \
     32 	OptInvocation.cpp \
     33 	sha1.cpp \
     34 	SysUtil.cpp \
     35 
     36 dex_include_files := \
     37 	dalvik \
     38 	external/zlib \
     39 	external/safe-iop/include
     40 
     41 ##
     42 ##
     43 ## Build the device version of libdex
     44 ##
     45 ##
     46 ifneq ($(SDK_ONLY),true)  # SDK_only doesn't need device version
     47 
     48 include $(CLEAR_VARS)
     49 #LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1
     50 LOCAL_SRC_FILES := $(dex_src_files)
     51 LOCAL_C_INCLUDES += $(dex_include_files)
     52 LOCAL_STATIC_LIBRARIES := liblog
     53 LOCAL_WHOLE_STATIC_LIBRARIES := libziparchive
     54 LOCAL_SHARED_LIBRARIES := libutils
     55 LOCAL_MODULE_TAGS := optional
     56 LOCAL_MODULE := libdex
     57 LOCAL_32_BIT_ONLY := true
     58 include $(BUILD_STATIC_LIBRARY)
     59 
     60 endif # !SDK_ONLY
     61 
     62 
     63 ##
     64 ##
     65 ## Build the host version of libdex
     66 ##
     67 ##
     68 include $(CLEAR_VARS)
     69 LOCAL_SRC_FILES := $(dex_src_files)
     70 LOCAL_C_INCLUDES += $(dex_include_files)
     71 LOCAL_STATIC_LIBRARIES := liblog libutils
     72 LOCAL_WHOLE_STATIC_LIBRARIES := libziparchive
     73 LOCAL_MODULE_HOST_OS := darwin linux windows
     74 LOCAL_MODULE := libdex
     75 include $(BUILD_HOST_STATIC_LIBRARY)
     76