blob: 0b0b2a843b245d3847b3191d297bb8dd23052056 [file] [log] [blame]
Chris Banes19b2eea2015-01-27 11:07:52 +00001# Copyright (C) 2015 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# Build the resources using the current SDK version.
18# We do this here because the final static library must be compiled with an older
19# SDK version than the resources. The resources library and the R class that it
20# contains will not be linked into the final static library.
21include $(CLEAR_VARS)
22LOCAL_MODULE := android-support-design-res
23LOCAL_SDK_VERSION := current
24LOCAL_SRC_FILES := $(call all-java-files-under, dummy)
25LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res \
26 frameworks/support/v7/appcompat/res
27LOCAL_AAPT_FLAGS := \
28 --auto-add-overlay \
29 --extra-packages android.support.v7.appcompat
30LOCAL_JAR_EXCLUDE_FILES := none
31include $(BUILD_STATIC_JAVA_LIBRARY)
32
33# A helper sub-library to resolve cyclic dependencies between src and the platform dependent
34# implementations
35include $(CLEAR_VARS)
36LOCAL_MODULE := android-support-design-base
37LOCAL_SDK_VERSION := 7
38LOCAL_SRC_FILES := $(call all-java-files-under, base)
39LOCAL_JAVA_LIBRARIES := android-support-design-res \
40 android-support-v4 \
41 android-support-v7-appcompat
42include $(BUILD_STATIC_JAVA_LIBRARY)
43
44# A helper sub-library that makes direct use of Eclair MR1 APIs
45include $(CLEAR_VARS)
46LOCAL_MODULE := android-support-design-eclair-mr1
47LOCAL_SDK_VERSION := 7
48LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1)
49LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-base
50LOCAL_JAVA_LIBRARIES := android-support-design-res \
51 android-support-v4 \
52 android-support-v7-appcompat
53include $(BUILD_STATIC_JAVA_LIBRARY)
54
Adam Powella966c6c2015-02-04 18:25:49 -080055# A helper sub-library that makes direct use of Honeycomb APIs
56include $(CLEAR_VARS)
57LOCAL_MODULE := android-support-design-honeycomb
58LOCAL_SDK_VERSION := 11
59LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb)
60LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-eclair-mr1
61LOCAL_JAVA_LIBRARIES := android-support-design-res \
62 android-support-v4 \
63 android-support-v7-appcompat
64include $(BUILD_STATIC_JAVA_LIBRARY)
65
Chris Banes631f64e2015-04-10 10:46:13 +010066# A helper sub-library that makes direct use of Honeycomb MR1 APIs
67include $(CLEAR_VARS)
68LOCAL_MODULE := android-support-design-honeycomb-mr1
69LOCAL_SDK_VERSION := 12
70LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb-mr1)
71LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-honeycomb
72LOCAL_JAVA_LIBRARIES := android-support-design-res \
73 android-support-v4 \
74 android-support-v7-appcompat
75include $(BUILD_STATIC_JAVA_LIBRARY)
76
Chris Banes19b2eea2015-01-27 11:07:52 +000077# A helper sub-library that makes direct use of Lollipop APIs
78include $(CLEAR_VARS)
79LOCAL_MODULE := android-support-design-lollipop
80LOCAL_SDK_VERSION := 21
81LOCAL_SRC_FILES := $(call all-java-files-under, lollipop)
Chris Banes631f64e2015-04-10 10:46:13 +010082LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-honeycomb-mr1
Chris Banes19b2eea2015-01-27 11:07:52 +000083LOCAL_JAVA_LIBRARIES := android-support-design-res \
84 android-support-v4 \
85 android-support-v7-appcompat
86include $(BUILD_STATIC_JAVA_LIBRARY)
87
88# Here is the final static library that apps can link against.
89# The R class is automatically excluded from the generated library.
90# Applications that use this library must specify LOCAL_RESOURCE_DIR
91# in their makefiles to include the resources in their package.
92include $(CLEAR_VARS)
93LOCAL_MODULE := android-support-design
94LOCAL_SDK_VERSION := current
95LOCAL_SRC_FILES := $(call all-java-files-under, src)
96LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-lollipop
97LOCAL_JAVA_LIBRARIES := android-support-design-res \
98 android-support-v4 \
99 android-support-v7-appcompat
100include $(BUILD_STATIC_JAVA_LIBRARY)
Chris Banes27238d12015-04-01 15:44:41 +0100101
102# API Check
103# ---------------------------------------------
104support_module := $(LOCAL_MODULE)
105support_module_api_dir := $(LOCAL_PATH)/api
106support_module_src_files := $(LOCAL_SRC_FILES)
107support_module_java_libraries := $(LOCAL_JAVA_LIBRARIES)
Chris Banes96258dd2015-04-30 10:37:19 +0100108support_module_java_packages := android.support.design.*
Chris Banes27238d12015-04-01 15:44:41 +0100109include $(SUPPORT_API_CHECK)