Home | History | Annotate | Download | only in sdk
      1 #
      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 
     17 LOCAL_PATH:= $(call my-dir)
     18 include $(CLEAR_VARS)
     19 
     20 # $(1): sdk version
     21 define _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)
     29 
     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)
     39 endef
     40 
     41 $(foreach s,$(TARGET_AVAILABLE_SDK_VERSIONS),$(eval $(call _copy_prebuilt_sdk_to_the_right_place,$(s))))
     42 
     43 # 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.
     46 checkbuild : $(call intermediates-dir-for,JAVA_LIBRARIES,sdk_vcurrent,,COMMON)/classes.jar
     47 
     48 include $(call all-makefiles-under,$(LOCAL_PATH))
     49