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
15LOCAL_PATH := $(call my-dir)
16
17# build smali jar
18# ============================================================
19
20include $(CLEAR_VARS)
21
22LOCAL_MODULE := smalilib
23
24LOCAL_MODULE_TAGS := optional
25
26#LOCAL_MODULE_CLASS and LOCAL_IS_HOST_MODULE must be defined before calling $(local-intermediates-dir)
27LOCAL_MODULE_CLASS := JAVA_LIBRARIES
28LOCAL_IS_HOST_MODULE := true
29
30intermediates := $(call local-intermediates-dir,COMMON)
31
32GEN := $(addprefix $(intermediates)/, \
33			smaliParser.java \
34			smaliTreeWalker.java \
35        )
36
37LOCAL_SRC_FILES := \
38	$(call all-java-files-under, src/main/java) \
39	$(call all-java-files-under, ../util/src/main/java)
40
41LOCAL_JAR_MANIFEST := manifest.txt
42
43LOCAL_STATIC_JAVA_LIBRARIES := \
44	antlr-runtime \
45	dexlib2
46
47#read in the version number
48SMALI_VERSION := $(shell cat $(LOCAL_PATH)/../build.gradle | \
49    grep -o -e "^version = '\(.*\)'" | grep -o -e "[0-9.]\+")
50
51SMALI_VERSION := $(SMALI_VERSION)-aosp
52
53#create a new smali.properties file using the correct version
54$(intermediates)/resources/smali.properties:
55	$(hide) mkdir -p $(dir $@)
56	$(hide) echo "application.version=$(SMALI_VERSION)" > $@
57
58LOCAL_JAVA_RESOURCE_FILES := $(intermediates)/resources/smali.properties
59
60include $(BUILD_HOST_JAVA_LIBRARY)
61
62
63
64# copy smali script
65# ============================================================
66
67include $(CLEAR_VARS)
68LOCAL_IS_HOST_MODULE := true
69LOCAL_MODULE_CLASS := EXECUTABLES
70LOCAL_MODULE_TAGS := optional
71LOCAL_MODULE := smali
72
73include $(BUILD_SYSTEM)/base_rules.mk
74
75$(LOCAL_BUILT_MODULE): $(HOST_OUT_JAVA_LIBRARIES)/smalilib.jar
76$(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/../scripts/smali | $(ACP)
77	@echo "Copy: $(PRIVATE_MODULE) ($@)"
78	$(copy-file-to-new-target)
79	$(hide) chmod 755 $@