blob: b78e5a863a35125c2947b22f40da0daa02568d3d [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
27$$(_cpsttrp_sdk_intermediates)/javalib.jar : $$(_cpsttrp_sdk_intermediates)/classes.jar | $(ACP)
28 $$(call copy-file-to-target)
Ying Wang7337fad2012-10-02 17:19:45 -070029
30# The uiautomator.jar
31_cpsttrp_src_jar := $(LOCAL_PATH)/$(1)/uiautomator.jar
32# The uiautomator library should be referenced as "LOCAL_JAVA_LIBRARIES += uiautomator_sdk_v<version>".
33_cpsttrp_sdk_intermediates := $(call intermediates-dir-for,JAVA_LIBRARIES,uiautomator_sdk_v$(1),,COMMON)
34$$(_cpsttrp_sdk_intermediates)/classes.jar : $$(_cpsttrp_src_jar) | $(ACP)
35 $$(call copy-file-to-target)
36
37$$(_cpsttrp_sdk_intermediates)/javalib.jar : $$(_cpsttrp_sdk_intermediates)/classes.jar | $(ACP)
38 $$(call copy-file-to-target)
Ying Wangb335bb02011-11-29 10:23:55 -080039endef
40
Ying Wang7337fad2012-10-02 17:19:45 -070041$(foreach s,$(TARGET_AVAILABLE_SDK_VERSIONS),$(eval $(call _copy_prebuilt_sdk_to_the_right_place,$(s))))
Ying Wangb335bb02011-11-29 10:23:55 -080042
Ying Wang2a38d242014-04-25 14:49:31 -070043# Make sure we install the prebuilt current sdk when you do a checkbuild
44# so later users can run tapas and mm/mmm on an Android.mk with "LOCAL_SDK_VERSION := current".
45# That Android.mk may not be visible to platform build.
46checkbuild : $(call intermediates-dir-for,JAVA_LIBRARIES,sdk_vcurrent,,COMMON)/classes.jar
47
Ying Wangb335bb02011-11-29 10:23:55 -080048include $(call all-makefiles-under,$(LOCAL_PATH))