blob: 08ac299ede516f06a733fa4a133452576ace56e2 [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 Banes19b2eea2015-01-27 11:07:52 +000066# A helper sub-library that makes direct use of Lollipop APIs
67include $(CLEAR_VARS)
68LOCAL_MODULE := android-support-design-lollipop
69LOCAL_SDK_VERSION := 21
70LOCAL_SRC_FILES := $(call all-java-files-under, lollipop)
Adam Powella966c6c2015-02-04 18:25:49 -080071LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-honeycomb
Chris Banes19b2eea2015-01-27 11:07:52 +000072LOCAL_JAVA_LIBRARIES := android-support-design-res \
73 android-support-v4 \
74 android-support-v7-appcompat
75include $(BUILD_STATIC_JAVA_LIBRARY)
76
77# Here is the final static library that apps can link against.
78# The R class is automatically excluded from the generated library.
79# Applications that use this library must specify LOCAL_RESOURCE_DIR
80# in their makefiles to include the resources in their package.
81include $(CLEAR_VARS)
82LOCAL_MODULE := android-support-design
83LOCAL_SDK_VERSION := current
84LOCAL_SRC_FILES := $(call all-java-files-under, src)
85LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-lollipop
86LOCAL_JAVA_LIBRARIES := android-support-design-res \
87 android-support-v4 \
88 android-support-v7-appcompat
89include $(BUILD_STATIC_JAVA_LIBRARY)
Chris Banes27238d12015-04-01 15:44:41 +010090
91# API Check
92# ---------------------------------------------
93support_module := $(LOCAL_MODULE)
94support_module_api_dir := $(LOCAL_PATH)/api
95support_module_src_files := $(LOCAL_SRC_FILES)
96support_module_java_libraries := $(LOCAL_JAVA_LIBRARIES)
97support_module_java_packages := android.support.design.widget
98include $(SUPPORT_API_CHECK)