blob: 7ca8b9a3d73fadf10e67c1345e76b9c8fab66d8d [file] [log] [blame]
Dianne Hackbornb13ff272011-04-15 19:01:42 -07001# 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# 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
Jeff Brownc21f57e2013-03-07 16:25:37 -080020# A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
Adam Cohen948cc9d2012-12-11 18:38:58 -080021include $(CLEAR_VARS)
Jeff Brownc21f57e2013-03-07 16:25:37 -080022LOCAL_MODULE := android-support-v13-ics
23LOCAL_SDK_VERSION := 14
24LOCAL_SRC_FILES := $(call all-java-files-under, ics)
Adam Cohen948cc9d2012-12-11 18:38:58 -080025include $(BUILD_STATIC_JAVA_LIBRARY)
26
Dianne Hackborn2a4d8512011-08-29 17:12:21 -070027# A helper sub-library that makes direct use of Ice Cream Sandwich APIs.
28include $(CLEAR_VARS)
Adam Powellabc968f2011-10-26 10:22:40 -070029LOCAL_MODULE := android-support-v13-ics-mr1
Ying Wangf2fed0f2012-01-03 12:03:58 -080030LOCAL_SDK_VERSION := 15
Adam Powellabc968f2011-10-26 10:22:40 -070031LOCAL_SRC_FILES := $(call all-java-files-under, ics-mr1)
Jeff Brownc21f57e2013-03-07 16:25:37 -080032LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13-ics
Adam Powellabc968f2011-10-26 10:22:40 -070033include $(BUILD_STATIC_JAVA_LIBRARY)
34
Dianne Hackborn2a4d8512011-08-29 17:12:21 -070035# -----------------------------------------------------------------------
36
Dianne Hackbornb13ff272011-04-15 19:01:42 -070037include $(CLEAR_VARS)
38LOCAL_MODULE := android-support-v13
Dianne Hackborn2a4d8512011-08-29 17:12:21 -070039LOCAL_SDK_VERSION := 13
Dianne Hackbornb13ff272011-04-15 19:01:42 -070040LOCAL_SRC_FILES := $(call all-java-files-under, java)
Dianne Hackborn2a4d8512011-08-29 17:12:21 -070041LOCAL_STATIC_JAVA_LIBRARIES += android-support-v4 \
Winson Chunge4788682013-04-25 16:02:40 -070042 android-support-v13-ics-mr1
Dianne Hackbornb13ff272011-04-15 19:01:42 -070043include $(BUILD_STATIC_JAVA_LIBRARY)