blob: e099048e8e34508af6de8c4b952951d60fcd468a [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
Dianne Hackborne4417c92011-04-04 18:48:18 -070017# 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
Adam Powellc029e152013-06-18 10:44:16 -070026# 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
Dianne Hackborne4417c92011-04-04 18:48:18 -070036# 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)
Adam Powellc029e152013-06-18 10:44:16 -070041LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-eclair-mr1
Dianne Hackborne4417c92011-04-04 18:48:18 -070042include $(BUILD_STATIC_JAVA_LIBRARY)
43
44# -----------------------------------------------------------------------
45
Adam Powell560114f2011-09-02 20:25:44 -070046# 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)
Jeff Brownc21f57e2013-03-07 16:25:37 -080051LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-froyo
Adam Powell560114f2011-09-02 20:25:44 -070052include $(BUILD_STATIC_JAVA_LIBRARY)
53
54# -----------------------------------------------------------------------
55
Dianne Hackborn27aea042011-02-22 13:51:13 -080056# 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)
Jeff Brownc21f57e2013-03-07 16:25:37 -080061LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-gingerbread
Dianne Hackborn27aea042011-02-22 13:51:13 -080062include $(BUILD_STATIC_JAVA_LIBRARY)
63
64# -----------------------------------------------------------------------
65
Dianne Hackborn5c163702011-06-06 14:01:34 -070066# A helper sub-library that makes direct use of Honeycomb MR2 APIs.
67include $(CLEAR_VARS)
68LOCAL_MODULE := android-support-v4-honeycomb-mr2
Adam Powellbc889e32011-06-13 17:56:50 -070069LOCAL_SDK_VERSION := 13
Dianne Hackborn5c163702011-06-06 14:01:34 -070070LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb_mr2)
Jeff Brownc21f57e2013-03-07 16:25:37 -080071LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb
Dianne Hackborn5c163702011-06-06 14:01:34 -070072include $(BUILD_STATIC_JAVA_LIBRARY)
73
74# -----------------------------------------------------------------------
75
Adam Powellbc889e32011-06-13 17:56:50 -070076# A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
77include $(CLEAR_VARS)
78LOCAL_MODULE := android-support-v4-ics
Ying Wang2f571322011-09-19 16:30:39 -070079LOCAL_SDK_VERSION := 14
Adam Powellbc889e32011-06-13 17:56:50 -070080LOCAL_SRC_FILES := $(call all-java-files-under, ics)
Jeff Brownc21f57e2013-03-07 16:25:37 -080081LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-honeycomb-mr2
Adam Powellbc889e32011-06-13 17:56:50 -070082include $(BUILD_STATIC_JAVA_LIBRARY)
83
84# -----------------------------------------------------------------------
85
Svetoslav Ganovc64858f2012-01-30 15:13:34 -080086# 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)
Jeff Brownc21f57e2013-03-07 16:25:37 -080091LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics
Svetoslav Ganovc64858f2012-01-30 15:13:34 -080092include $(BUILD_STATIC_JAVA_LIBRARY)
93
94# -----------------------------------------------------------------------
95
Svetoslav Ganov956b0132012-01-31 11:29:47 -080096# A helper sub-library that makes direct use of JellyBean APIs.
97include $(CLEAR_VARS)
98LOCAL_MODULE := android-support-v4-jellybean
Svetoslav Ganovf3ed7c52012-05-13 13:29:30 -070099LOCAL_SDK_VERSION := 16
Svetoslav Ganov956b0132012-01-31 11:29:47 -0800100LOCAL_SRC_FILES := $(call all-java-files-under, jellybean)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800101LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-ics-mr1
Svetoslav Ganov956b0132012-01-31 11:29:47 -0800102include $(BUILD_STATIC_JAVA_LIBRARY)
103
104# -----------------------------------------------------------------------
105
Svetoslav Ganov0af001b2012-09-21 14:49:11 -0700106# A helper sub-library that makes direct use of JellyBean MR1 APIs.
107include $(CLEAR_VARS)
108LOCAL_MODULE := android-support-v4-jellybean-mr1
Jim Guggemos82956802012-12-04 17:35:26 -0700109LOCAL_SDK_VERSION := 17
Svetoslav Ganov0af001b2012-09-21 14:49:11 -0700110LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr1)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800111LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean
Svetoslav Ganov0af001b2012-09-21 14:49:11 -0700112include $(BUILD_STATIC_JAVA_LIBRARY)
113
114# -----------------------------------------------------------------------
115
Svetoslav0fc5bd72013-02-04 15:19:36 -0800116# 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 := current
120LOCAL_SRC_FILES := $(call all-java-files-under, jellybean-mr2)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800121LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4-jellybean-mr1
Svetoslav0fc5bd72013-02-04 15:19:36 -0800122include $(BUILD_STATIC_JAVA_LIBRARY)
123
124# -----------------------------------------------------------------------
125
Dianne Hackborn27aea042011-02-22 13:51:13 -0800126# Here is the final static library that apps can link against.
Dianne Hackborncba2e2c2011-02-07 17:42:11 -0800127include $(CLEAR_VARS)
128LOCAL_MODULE := android-support-v4
129LOCAL_SDK_VERSION := 4
Dianne Hackborn27aea042011-02-22 13:51:13 -0800130LOCAL_SRC_FILES := $(call all-java-files-under, java)
Jeff Brownc21f57e2013-03-07 16:25:37 -0800131LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4-jellybean-mr2
Dianne Hackborncba2e2c2011-02-07 17:42:11 -0800132include $(BUILD_STATIC_JAVA_LIBRARY)
133
134# Include this library in the build server's output directory
Xavier Ducrohet614bd222011-02-28 14:42:53 -0800135$(call dist-for-goals, droidcore sdk, $(LOCAL_BUILT_MODULE):android-support-v4.jar)