1# Copyright (C) 2011 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# A helper sub-library that makes direct use of Eclair APIs. 18include $(CLEAR_VARS) 19LOCAL_MODULE := android-support-v4-eclair 20LOCAL_SDK_VERSION := 5 21LOCAL_SRC_FILES := $(call all-java-files-under, eclair) 22include $(BUILD_STATIC_JAVA_LIBRARY) 23 24# ----------------------------------------------------------------------- 25 26# A helper sub-library that makes direct use of Eclair MR1 APIs. 27include $(CLEAR_VARS) 28LOCAL_MODULE := android-support-v4-eclair-mr1 29LOCAL_SDK_VERSION := 7 30LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1) 31LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair 32include $(BUILD_STATIC_JAVA_LIBRARY) 33 34# ----------------------------------------------------------------------- 35 36# A helper sub-library that makes direct use of Froyo APIs. 37include $(CLEAR_VARS) 38LOCAL_MODULE := android-support-v4-froyo 39LOCAL_SDK_VERSION := 8 40LOCAL_SRC_FILES := $(call all-java-files-under, froyo) 41LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair-mr1 42include $(BUILD_STATIC_JAVA_LIBRARY) 43 44# ----------------------------------------------------------------------- 45 46# A helper sub-library that makes direct use of Gingerbread APIs. 47include $(CLEAR_VARS) 48LOCAL_MODULE := android-support-v4-gingerbread 49LOCAL_SDK_VERSION := 9 50LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread) 51LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-froyo 52include $(BUILD_STATIC_JAVA_LIBRARY) 53 54# ----------------------------------------------------------------------- 55 56# A helper sub-library that makes direct use of Honeycomb APIs. 57include $(CLEAR_VARS) 58LOCAL_MODULE := android-support-v4-honeycomb 59LOCAL_SDK_VERSION := 11 60LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb) 61LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-gingerbread 62include $(BUILD_STATIC_JAVA_LIBRARY) 63 64# ----------------------------------------------------------------------- 65 66# A helper sub-library that makes direct use of Honeycomb MR2 APIs. 67include $(CLEAR_VARS) 68LOCAL_MODULE := android-support-v4-honeycomb-mr2 69LOCAL_SDK_VERSION := 13 70LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2) 71LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb 72include $(BUILD_STATIC_JAVA_LIBRARY) 73 74# ----------------------------------------------------------------------- 75 76# A helper sub-library that makes direct use of Ice Cream Sandwich APIs. 77include $(CLEAR_VARS) 78LOCAL_MODULE := android-support-v4-ics 79LOCAL_SDK_VERSION := 14 80LOCAL_SRC_FILES := $(call all-java-files-under, ics) 81LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb-mr2 82include $(BUILD_STATIC_JAVA_LIBRARY) 83 84# ----------------------------------------------------------------------- 85 86# A helper sub-library that makes direct use of Ice Cream Sandwich MR1 APIs. 87include $(CLEAR_VARS) 88LOCAL_MODULE := android-support-v4-ics-mr1 89LOCAL_SDK_VERSION := 15 90LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1) 91LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics 92include $(BUILD_STATIC_JAVA_LIBRARY) 93 94# ----------------------------------------------------------------------- 95 96# A helper sub-library that makes direct use of JellyBean APIs. 97include $(CLEAR_VARS) 98LOCAL_MODULE := android-support-v4-jellybean 99LOCAL_SDK_VERSION := 16 100LOCAL_SRC_FILES := $(call all-java-files-under, jellybean) 101LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics-mr1 102include $(BUILD_STATIC_JAVA_LIBRARY) 103 104# ----------------------------------------------------------------------- 105 106# A helper sub-library that makes direct use of JellyBean MR1 APIs. 107include $(CLEAR_VARS) 108LOCAL_MODULE := android-support-v4-jellybean-mr1 109LOCAL_SDK_VERSION := 17 110LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1) 111LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean 112include $(BUILD_STATIC_JAVA_LIBRARY) 113 114# ----------------------------------------------------------------------- 115 116# A helper sub-library that makes direct use of JellyBean MR2 APIs. 117include $(CLEAR_VARS) 118LOCAL_MODULE := android-support-v4-jellybean-mr2 119LOCAL_SDK_VERSION := 18 120LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2) 121LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr1 122include $(BUILD_STATIC_JAVA_LIBRARY) 123 124# ----------------------------------------------------------------------- 125 126# A helper sub-library that makes direct use of KitKat APIs. 127include $(CLEAR_VARS) 128LOCAL_MODULE := android-support-v4-kitkat 129LOCAL_SDK_VERSION := 19 130LOCAL_SRC_FILES := $(call all-java-files-under, kitkat) 131LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr2 132include $(BUILD_STATIC_JAVA_LIBRARY) 133 134# ----------------------------------------------------------------------- 135 136# Here is the final static library that apps can link against. 137include $(CLEAR_VARS) 138LOCAL_MODULE := android-support-v4 139LOCAL_SDK_VERSION := 4 140LOCAL_SRC_FILES := $(call all-java-files-under, java) 141LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4-kitkat 142include $(BUILD_STATIC_JAVA_LIBRARY) 143