Home | History | Annotate | Download | only in baksmali
      1 # Copyright (C) 2010 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 # build baksmali jar
     18 # ============================================================
     19 
     20 include $(CLEAR_VARS)
     21 
     22 LOCAL_MODULE := baksmalilib
     23 
     24 LOCAL_MODULE_TAGS := optional
     25 
     26 #LOCAL_MODULE_CLASS and LOCAL_IS_HOST_MODULE must be defined before calling $(local-intermediates-dir)
     27 LOCAL_MODULE_CLASS := JAVA_LIBRARIES
     28 LOCAL_IS_HOST_MODULE := true
     29 
     30 intermediates := $(call local-intermediates-dir,COMMON)
     31 
     32 LOCAL_SRC_FILES := \
     33 	$(call all-java-files-under, src/main/java) \
     34 	$(call all-java-files-under, ../util/src/main/java)
     35 
     36 LOCAL_JAR_MANIFEST := manifest.txt
     37 
     38 LOCAL_STATIC_JAVA_LIBRARIES := \
     39 	dexlib2
     40 
     41 #create a new baksmali.properties file using the correct version
     42 $(intermediates)/resources/baksmali.properties: $(LOCAL_PATH)/../build.gradle
     43 	$(hide) mkdir -p $(dir $@)
     44 	$(hide) echo "application.version=$$(grep -o -e "^version = '\(.*\)'" $< | grep -o -e "[0-9.]\+")-aosp" >$@
     45 
     46 LOCAL_JAVA_RESOURCE_FILES := $(intermediates)/resources/baksmali.properties
     47 
     48 include $(BUILD_HOST_JAVA_LIBRARY)
     49 
     50 
     51 
     52 # copy baksmali script
     53 # ============================================================
     54 
     55 include $(CLEAR_VARS)
     56 LOCAL_IS_HOST_MODULE := true
     57 LOCAL_MODULE_CLASS := EXECUTABLES
     58 LOCAL_MODULE := baksmali
     59 LOCAL_SRC_FILES := ../scripts/baksmali
     60 LOCAL_REQUIRED_MODULES := baksmalilib
     61 include $(BUILD_PREBUILT)
     62