Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 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 | |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
| 17 | # Note: the source code is in java/, not src/, because this code is also part of |
| 18 | # the framework library, and build/core/pathmap.mk expects a java/ subdirectory. |
| 19 | |
Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 20 | # A helper sub-library that makes direct use of Eclair APIs. |
| 21 | include $(CLEAR_VARS) |
| 22 | LOCAL_MODULE := android-support-v4-eclair |
| 23 | LOCAL_SDK_VERSION := 5 |
| 24 | LOCAL_SRC_FILES := $(call all-java-files-under, eclair) |
| 25 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 26 | |
| 27 | # ----------------------------------------------------------------------- |
| 28 | |
| 29 | # A helper sub-library that makes direct use of Froyo APIs. |
| 30 | include $(CLEAR_VARS) |
| 31 | LOCAL_MODULE := android-support-v4-froyo |
| 32 | LOCAL_SDK_VERSION := 8 |
| 33 | LOCAL_SRC_FILES := $(call all-java-files-under, froyo) |
| 34 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 35 | |
| 36 | # ----------------------------------------------------------------------- |
| 37 | |
Adam Powell | 560114f | 2011-09-02 20:25:44 -0700 | [diff] [blame] | 38 | # A helper sub-library that makes direct use of Gingerbread APIs. |
| 39 | include $(CLEAR_VARS) |
| 40 | LOCAL_MODULE := android-support-v4-gingerbread |
| 41 | LOCAL_SDK_VERSION := 9 |
| 42 | LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread) |
| 43 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 44 | |
| 45 | # ----------------------------------------------------------------------- |
| 46 | |
Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 47 | # A helper sub-library that makes direct use of Honeycomb APIs. |
| 48 | include $(CLEAR_VARS) |
| 49 | LOCAL_MODULE := android-support-v4-honeycomb |
| 50 | LOCAL_SDK_VERSION := 11 |
| 51 | LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb) |
| 52 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 53 | |
| 54 | # ----------------------------------------------------------------------- |
| 55 | |
Dianne Hackborn | 5c16370 | 2011-06-06 14:01:34 -0700 | [diff] [blame] | 56 | # A helper sub-library that makes direct use of Honeycomb MR2 APIs. |
| 57 | include $(CLEAR_VARS) |
| 58 | LOCAL_MODULE := android-support-v4-honeycomb-mr2 |
Adam Powell | bc889e3 | 2011-06-13 17:56:50 -0700 | [diff] [blame] | 59 | LOCAL_SDK_VERSION := 13 |
Dianne Hackborn | 5c16370 | 2011-06-06 14:01:34 -0700 | [diff] [blame] | 60 | LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2) |
| 61 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 62 | |
| 63 | # ----------------------------------------------------------------------- |
| 64 | |
Adam Powell | bc889e3 | 2011-06-13 17:56:50 -0700 | [diff] [blame] | 65 | # A helper sub-library that makes direct use of Ice Cream Sandwich APIs. |
| 66 | include $(CLEAR_VARS) |
| 67 | LOCAL_MODULE := android-support-v4-ics |
Ying Wang | 2f57132 | 2011-09-19 16:30:39 -0700 | [diff] [blame] | 68 | LOCAL_SDK_VERSION := 14 |
Adam Powell | bc889e3 | 2011-06-13 17:56:50 -0700 | [diff] [blame] | 69 | LOCAL_SRC_FILES := $(call all-java-files-under, ics) |
| 70 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 71 | |
| 72 | # ----------------------------------------------------------------------- |
| 73 | |
Svetoslav Ganov | c64858f | 2012-01-30 15:13:34 -0800 | [diff] [blame] | 74 | # A helper sub-library that makes direct use of Ice Cream Sandwich MR1 APIs. |
| 75 | include $(CLEAR_VARS) |
| 76 | LOCAL_MODULE := android-support-v4-ics-mr1 |
| 77 | LOCAL_SDK_VERSION := 15 |
| 78 | LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1) |
| 79 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 80 | |
| 81 | # ----------------------------------------------------------------------- |
| 82 | |
Svetoslav Ganov | 956b013 | 2012-01-31 11:29:47 -0800 | [diff] [blame^] | 83 | # A helper sub-library that makes direct use of JellyBean APIs. |
| 84 | include $(CLEAR_VARS) |
| 85 | LOCAL_MODULE := android-support-v4-jellybean |
| 86 | #TODO: Update LOCAL_SDK_VERSION as soon JellyBean has such. (tracked by bug:5947249) |
| 87 | LOCAL_SDK_VERSION := current |
| 88 | LOCAL_SRC_FILES := $(call all-java-files-under, jellybean) |
| 89 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 90 | |
| 91 | # ----------------------------------------------------------------------- |
| 92 | |
Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 93 | # Here is the final static library that apps can link against. |
Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 94 | include $(CLEAR_VARS) |
| 95 | LOCAL_MODULE := android-support-v4 |
| 96 | LOCAL_SDK_VERSION := 4 |
Dianne Hackborn | 27aea04 | 2011-02-22 13:51:13 -0800 | [diff] [blame] | 97 | LOCAL_SRC_FILES := $(call all-java-files-under, java) |
Dianne Hackborn | e4417c9 | 2011-04-04 18:48:18 -0700 | [diff] [blame] | 98 | LOCAL_STATIC_JAVA_LIBRARIES += \ |
| 99 | android-support-v4-eclair \ |
| 100 | android-support-v4-froyo \ |
Adam Powell | 560114f | 2011-09-02 20:25:44 -0700 | [diff] [blame] | 101 | android-support-v4-gingerbread \ |
Dianne Hackborn | 5c16370 | 2011-06-06 14:01:34 -0700 | [diff] [blame] | 102 | android-support-v4-honeycomb \ |
Adam Powell | bc889e3 | 2011-06-13 17:56:50 -0700 | [diff] [blame] | 103 | android-support-v4-honeycomb-mr2 \ |
Svetoslav Ganov | c64858f | 2012-01-30 15:13:34 -0800 | [diff] [blame] | 104 | android-support-v4-ics \ |
Svetoslav Ganov | 956b013 | 2012-01-31 11:29:47 -0800 | [diff] [blame^] | 105 | android-support-v4-ics-mr1 \ |
| 106 | android-support-v4-jellybean |
Dianne Hackborn | cba2e2c | 2011-02-07 17:42:11 -0800 | [diff] [blame] | 107 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 108 | |
| 109 | # Include this library in the build server's output directory |
Xavier Ducrohet | 614bd22 | 2011-02-28 14:42:53 -0800 | [diff] [blame] | 110 | $(call dist-for-goals, droidcore sdk, $(LOCAL_BUILT_MODULE):android-support-v4.jar) |