blob: 7aefa5447cdfb06e1cdadbbf569b661e23c1c19c [file] [log] [blame]
Ying Wangb335bb02011-11-29 10:23:55 -08001#
2# Copyright (C) 2010 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17LOCAL_PATH:= $(call my-dir)
18include $(CLEAR_VARS)
19
20# $(1): sdk version
21define _copy_prebuilt_sdk_to_the_right_place
22_cpsttrp_src_jar := $(LOCAL_PATH)/$(1)/android.jar
23_cpsttrp_sdk_intermediates := $(call intermediates-dir-for,JAVA_LIBRARIES,sdk_v$(1),,COMMON)
24$$(_cpsttrp_sdk_intermediates)/classes.jar : $$(_cpsttrp_src_jar) | $(ACP)
25 $$(call copy-file-to-target)
26
Yohann Roussel40c42d42014-09-08 15:00:54 +020027$$(_cpsttrp_sdk_intermediates)/classes.jack : $$(_cpsttrp_src_jar) $(JILL_JAR)
28 $(hide) mkdir -p $$(dir $$@)
29 $(hide) $(JILL) $$< --output $$@
30
Ying Wangb335bb02011-11-29 10:23:55 -080031$$(_cpsttrp_sdk_intermediates)/javalib.jar : $$(_cpsttrp_sdk_intermediates)/classes.jar | $(ACP)
32 $$(call copy-file-to-target)
Ying Wang7337fad2012-10-02 17:19:45 -070033
34# The uiautomator.jar
35_cpsttrp_src_jar := $(LOCAL_PATH)/$(1)/uiautomator.jar
36# The uiautomator library should be referenced as "LOCAL_JAVA_LIBRARIES += uiautomator_sdk_v<version>".
37_cpsttrp_sdk_intermediates := $(call intermediates-dir-for,JAVA_LIBRARIES,uiautomator_sdk_v$(1),,COMMON)
38$$(_cpsttrp_sdk_intermediates)/classes.jar : $$(_cpsttrp_src_jar) | $(ACP)
39 $$(call copy-file-to-target)
40
Yohann Roussel40c42d42014-09-08 15:00:54 +020041$$(_cpsttrp_sdk_intermediates)/classes.jack : $$(_cpsttrp_src_jar) $(JILL_JAR)
42 $(hide) mkdir -p $$(dir $$@)
43 $(hide) $(JILL) $$< --output $$@
44
Ying Wang7337fad2012-10-02 17:19:45 -070045$$(_cpsttrp_sdk_intermediates)/javalib.jar : $$(_cpsttrp_sdk_intermediates)/classes.jar | $(ACP)
46 $$(call copy-file-to-target)
Ying Wangb335bb02011-11-29 10:23:55 -080047endef
48
Ying Wang7337fad2012-10-02 17:19:45 -070049$(foreach s,$(TARGET_AVAILABLE_SDK_VERSIONS),$(eval $(call _copy_prebuilt_sdk_to_the_right_place,$(s))))
Ying Wangb335bb02011-11-29 10:23:55 -080050
Ying Wang2a38d242014-04-25 14:49:31 -070051# Make sure we install the prebuilt current sdk when you do a checkbuild
52# so later users can run tapas and mm/mmm on an Android.mk with "LOCAL_SDK_VERSION := current".
53# That Android.mk may not be visible to platform build.
54checkbuild : $(call intermediates-dir-for,JAVA_LIBRARIES,sdk_vcurrent,,COMMON)/classes.jar
55
Ying Wangb335bb02011-11-29 10:23:55 -080056include $(call all-makefiles-under,$(LOCAL_PATH))