blob: c1ae34ea42dd3a24c7624520c26fe653482013e5 [file] [log] [blame]
Dianne Hackborncba2e2c2011-02-07 17:42:11 -08001# 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
Przemyslaw Szczepaniak8e65b642014-05-07 16:40:19 +010017# A helper sub-library that makes direct use of Donut APIs.
18include $(CLEAR_VARS)
19LOCAL_MODULE := android-support-v4-donut
20LOCAL_SDK_VERSION := 4
21LOCAL_SRC_FILES := $(call all-java-files-under, donut)
22include $(BUILD_STATIC_JAVA_LIBRARY)
23
24# -----------------------------------------------------------------------
25
Dianne Hackborne4417c92011-04-04 18:48:18 -070026# A helper sub-library that makes direct use of Eclair APIs.
27include $(CLEAR_VARS)
28LOCAL_MODULE := android-support-v4-eclair
29LOCAL_SDK_VERSION := 5
30LOCAL_SRC_FILES := $(call all-java-files-under, eclair)
Przemyslaw Szczepaniak8e65b642014-05-07 16:40:19 +010031LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-donut
Dianne Hackborne4417c92011-04-04 18:48:18 -070032include $(BUILD_STATIC_JAVA_LIBRARY)
33
34# -----------------------------------------------------------------------
35
Adam Powellc029e152013-06-18 10:44:16 -070036# A helper sub-library that makes direct use of Eclair MR1 APIs.
37include $(CLEAR_VARS)
38LOCAL_MODULE := android-support-v4-eclair-mr1
39LOCAL_SDK_VERSION := 7
40LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1)
41LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair
42include $(BUILD_STATIC_JAVA_LIBRARY)
43
44# -----------------------------------------------------------------------
45
Dianne Hackborne4417c92011-04-04 18:48:18 -070046# A helper sub-library that makes direct use of Froyo APIs.
47include $(CLEAR_VARS)
48LOCAL_MODULE := android-support-v4-froyo
49LOCAL_SDK_VERSION := 8
50LOCAL_SRC_FILES := $(call all-java-files-under, froyo)
Adam Powellc029e152013-06-18 10:44:16 -070051LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair-mr1
Dianne Hackborne4417c92011-04-04 18:48:18 -070052include $(BUILD_STATIC_JAVA_LIBRARY)
53
54# -----------------------------------------------------------------------
55
Adam Powell560114f2011-09-02 20:25:44 -070056# A helper sub-library that makes direct use of Gingerbread APIs.
57include $(CLEAR_VARS)
58LOCAL_MODULE := android-support-v4-gingerbread
59LOCAL_SDK_VERSION := 9
60LOCAL_SRC_FILES := $(call all-java-files-under, gingerbread)
Jeff Brownc21f57e2013-03-07 16:25:37 -080061LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-froyo
Adam Powell560114f2011-09-02 20:25:44 -070062include $(BUILD_STATIC_JAVA_LIBRARY)
63
64# -----------------------------------------------------------------------
65
Dianne Hackborn27aea042011-02-22 13:51:13 -080066# A helper sub-library that makes direct use of Honeycomb APIs.
67include $(CLEAR_VARS)
68LOCAL_MODULE := android-support-v4-honeycomb
69LOCAL_SDK_VERSION := 11
70LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb)
Jeff Brownc21f57e2013-03-07 16:25:37 -080071LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-gingerbread
Dianne Hackborn27aea042011-02-22 13:51:13 -080072include $(BUILD_STATIC_JAVA_LIBRARY)
73
74# -----------------------------------------------------------------------
75
Dianne Hackborn5c163702011-06-06 14:01:34 -070076# A helper sub-library that makes direct use of Honeycomb MR2 APIs.
77include $(CLEAR_VARS)
78LOCAL_MODULE := android-support-v4-honeycomb-mr2
Adam Powellbc889e32011-06-13 17:56:50 -070079LOCAL_SDK_VERSION := 13
Dianne Hackborn5c163702011-06-06 14:01:34 -070080LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2)
Jeff Brownc21f57e2013-03-07 16:25:37 -080081LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb
Dianne Hackborn5c163702011-06-06 14:01:34 -070082include $(BUILD_STATIC_JAVA_LIBRARY)
83
84# -----------------------------------------------------------------------
85
Adam Powellbc889e32011-06-13 17:56:50 -070086# A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
87include $(CLEAR_VARS)
88LOCAL_MODULE := android-support-v4-ics
Ying Wang2f571322011-09-19 16:30:39 -070089LOCAL_SDK_VERSION := 14
Adam Powellbc889e32011-06-13 17:56:50 -070090LOCAL_SRC_FILES := $(call all-java-files-under, ics)
Jeff Brownc21f57e2013-03-07 16:25:37 -080091LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb-mr2
Adam Powellbc889e32011-06-13 17:56:50 -070092include $(BUILD_STATIC_JAVA_LIBRARY)
93
94# -----------------------------------------------------------------------
95
Svetoslav Ganovc64858f2012-01-30 15:13:34 -080096# A helper sub-library that makes direct use of Ice Cream Sandwich MR1 APIs.
97include $(CLEAR_VARS)
98LOCAL_MODULE := android-support-v4-ics-mr1
99LOCAL_SDK_VERSION := 15
100LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800101LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics
Svetoslav Ganovc64858f2012-01-30 15:13:34 -0800102include $(BUILD_STATIC_JAVA_LIBRARY)
103
104# -----------------------------------------------------------------------
105
Svetoslav Ganov956b0132012-01-31 11:29:47 -0800106# A helper sub-library that makes direct use of JellyBean APIs.
107include $(CLEAR_VARS)
108LOCAL_MODULE := android-support-v4-jellybean
Svetoslav Ganovf3ed7c52012-05-13 13:29:30 -0700109LOCAL_SDK_VERSION := 16
Svetoslav Ganov956b0132012-01-31 11:29:47 -0800110LOCAL_SRC_FILES := $(call all-java-files-under, jellybean)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800111LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics-mr1
Svetoslav Ganov956b0132012-01-31 11:29:47 -0800112include $(BUILD_STATIC_JAVA_LIBRARY)
113
114# -----------------------------------------------------------------------
115
Svetoslav Ganov0af001b2012-09-21 14:49:11 -0700116# A helper sub-library that makes direct use of JellyBean MR1 APIs.
117include $(CLEAR_VARS)
118LOCAL_MODULE := android-support-v4-jellybean-mr1
Jim Guggemos82956802012-12-04 17:35:26 -0700119LOCAL_SDK_VERSION := 17
Svetoslav Ganov0af001b2012-09-21 14:49:11 -0700120LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800121LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean
Svetoslav Ganov0af001b2012-09-21 14:49:11 -0700122include $(BUILD_STATIC_JAVA_LIBRARY)
123
124# -----------------------------------------------------------------------
125
Svetoslav0fc5bd72013-02-04 15:19:36 -0800126# A helper sub-library that makes direct use of JellyBean MR2 APIs.
127include $(CLEAR_VARS)
128LOCAL_MODULE := android-support-v4-jellybean-mr2
Mindy DelliCarpinib7c7eb82013-09-18 15:52:11 +0000129LOCAL_SDK_VERSION := 18
Svetoslav0fc5bd72013-02-04 15:19:36 -0800130LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800131LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr1
Svetoslav0fc5bd72013-02-04 15:19:36 -0800132include $(BUILD_STATIC_JAVA_LIBRARY)
133
134# -----------------------------------------------------------------------
135
Mindy DelliCarpinib7c7eb82013-09-18 15:52:11 +0000136# A helper sub-library that makes direct use of KitKat APIs.
137include $(CLEAR_VARS)
138LOCAL_MODULE := android-support-v4-kitkat
Adam Powelldd2c2322013-10-09 15:12:20 -0700139LOCAL_SDK_VERSION := 19
Mindy DelliCarpinib7c7eb82013-09-18 15:52:11 +0000140LOCAL_SRC_FILES := $(call all-java-files-under, kitkat)
141LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr2
142include $(BUILD_STATIC_JAVA_LIBRARY)
143
144# -----------------------------------------------------------------------
145
Alan Viverette479dd282014-05-20 13:36:51 -0700146# A helper sub-library that makes direct use of the upcoming API.
Griff Hazenb56de0d2014-02-13 08:55:28 -0800147# TODO: Apply a real name and SDK version when available
148include $(CLEAR_VARS)
149LOCAL_MODULE := android-support-v4-api20
150LOCAL_SDK_VERSION := current
151LOCAL_SRC_FILES := $(call all-java-files-under, api20)
152LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-kitkat
153include $(BUILD_STATIC_JAVA_LIBRARY)
154
155# -----------------------------------------------------------------------
156
Alan Viverette479dd282014-05-20 13:36:51 -0700157# A helper sub-library that makes direct use of the upcoming API.
158# TODO: Apply a real name and SDK version when available
159include $(CLEAR_VARS)
160LOCAL_MODULE := android-support-v4-api21
161LOCAL_SDK_VERSION := current
162LOCAL_SRC_FILES := $(call all-java-files-under, api21)
163LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-api20
164include $(BUILD_STATIC_JAVA_LIBRARY)
165
166# -----------------------------------------------------------------------
167
Dianne Hackborn27aea042011-02-22 13:51:13 -0800168# Here is the final static library that apps can link against.
Dianne Hackborncba2e2c2011-02-07 17:42:11 -0800169include $(CLEAR_VARS)
170LOCAL_MODULE := android-support-v4
171LOCAL_SDK_VERSION := 4
Griff Hazence16e422014-05-21 11:19:52 -0700172
173LOCAL_SRC_FILES := $(call all-java-files-under, java) \
174 $(call all-Iaidl-files-under, java)
175
Alan Viverette479dd282014-05-20 13:36:51 -0700176LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4-api21
Tor Norbye05568b72014-03-20 19:19:52 -0700177LOCAL_STATIC_JAVA_LIBRARIES += android-support-annotations
Dianne Hackborncba2e2c2011-02-07 17:42:11 -0800178include $(BUILD_STATIC_JAVA_LIBRARY)