| Chris Banes | 19b2eea | 2015-01-27 11:07:52 +0000 | [diff] [blame] | 1 | # 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 | |
| 15 | LOCAL_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. |
| 21 | include $(CLEAR_VARS) |
| 22 | LOCAL_MODULE := android-support-design-res |
| 23 | LOCAL_SDK_VERSION := current |
| 24 | LOCAL_SRC_FILES := $(call all-java-files-under, dummy) |
| 25 | LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res \ |
| 26 | frameworks/support/v7/appcompat/res |
| 27 | LOCAL_AAPT_FLAGS := \ |
| 28 | --auto-add-overlay \ |
| 29 | --extra-packages android.support.v7.appcompat |
| 30 | LOCAL_JAR_EXCLUDE_FILES := none |
| 31 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 32 | |
| 33 | # A helper sub-library to resolve cyclic dependencies between src and the platform dependent |
| 34 | # implementations |
| 35 | include $(CLEAR_VARS) |
| 36 | LOCAL_MODULE := android-support-design-base |
| 37 | LOCAL_SDK_VERSION := 7 |
| 38 | LOCAL_SRC_FILES := $(call all-java-files-under, base) |
| 39 | LOCAL_JAVA_LIBRARIES := android-support-design-res \ |
| 40 | android-support-v4 \ |
| 41 | android-support-v7-appcompat |
| 42 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 43 | |
| 44 | # A helper sub-library that makes direct use of Eclair MR1 APIs |
| 45 | include $(CLEAR_VARS) |
| 46 | LOCAL_MODULE := android-support-design-eclair-mr1 |
| 47 | LOCAL_SDK_VERSION := 7 |
| 48 | LOCAL_SRC_FILES := $(call all-java-files-under, eclair-mr1) |
| 49 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-base |
| 50 | LOCAL_JAVA_LIBRARIES := android-support-design-res \ |
| 51 | android-support-v4 \ |
| 52 | android-support-v7-appcompat |
| 53 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 54 | |
| Adam Powell | a966c6c | 2015-02-04 18:25:49 -0800 | [diff] [blame] | 55 | # A helper sub-library that makes direct use of Honeycomb APIs |
| 56 | include $(CLEAR_VARS) |
| 57 | LOCAL_MODULE := android-support-design-honeycomb |
| 58 | LOCAL_SDK_VERSION := 11 |
| 59 | LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb) |
| 60 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-eclair-mr1 |
| 61 | LOCAL_JAVA_LIBRARIES := android-support-design-res \ |
| 62 | android-support-v4 \ |
| 63 | android-support-v7-appcompat |
| 64 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 65 | |
| Chris Banes | 631f64e | 2015-04-10 10:46:13 +0100 | [diff] [blame] | 66 | # A helper sub-library that makes direct use of Honeycomb MR1 APIs |
| 67 | include $(CLEAR_VARS) |
| 68 | LOCAL_MODULE := android-support-design-honeycomb-mr1 |
| 69 | LOCAL_SDK_VERSION := 12 |
| 70 | LOCAL_SRC_FILES := $(call all-java-files-under, honeycomb-mr1) |
| 71 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-honeycomb |
| 72 | LOCAL_JAVA_LIBRARIES := android-support-design-res \ |
| 73 | android-support-v4 \ |
| 74 | android-support-v7-appcompat |
| 75 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| 76 | |
| Chris Banes | 19b2eea | 2015-01-27 11:07:52 +0000 | [diff] [blame] | 77 | # A helper sub-library that makes direct use of Lollipop APIs |
| 78 | include $(CLEAR_VARS) |
| 79 | LOCAL_MODULE := android-support-design-lollipop |
| 80 | LOCAL_SDK_VERSION := 21 |
| 81 | LOCAL_SRC_FILES := $(call all-java-files-under, lollipop) |
| Chris Banes | 631f64e | 2015-04-10 10:46:13 +0100 | [diff] [blame] | 82 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-honeycomb-mr1 |
| Chris Banes | 19b2eea | 2015-01-27 11:07:52 +0000 | [diff] [blame] | 83 | LOCAL_JAVA_LIBRARIES := android-support-design-res \ |
| 84 | android-support-v4 \ |
| 85 | android-support-v7-appcompat |
| 86 | include $(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. |
| 92 | include $(CLEAR_VARS) |
| 93 | LOCAL_MODULE := android-support-design |
| 94 | LOCAL_SDK_VERSION := current |
| 95 | LOCAL_SRC_FILES := $(call all-java-files-under, src) |
| 96 | LOCAL_STATIC_JAVA_LIBRARIES := android-support-design-lollipop |
| 97 | LOCAL_JAVA_LIBRARIES := android-support-design-res \ |
| 98 | android-support-v4 \ |
| 99 | android-support-v7-appcompat |
| 100 | include $(BUILD_STATIC_JAVA_LIBRARY) |
| Chris Banes | 27238d1 | 2015-04-01 15:44:41 +0100 | [diff] [blame] | 101 | |
| 102 | # API Check |
| 103 | # --------------------------------------------- |
| 104 | support_module := $(LOCAL_MODULE) |
| 105 | support_module_api_dir := $(LOCAL_PATH)/api |
| 106 | support_module_src_files := $(LOCAL_SRC_FILES) |
| 107 | support_module_java_libraries := $(LOCAL_JAVA_LIBRARIES) |
| Chris Banes | 96258dd | 2015-04-30 10:37:19 +0100 | [diff] [blame] | 108 | support_module_java_packages := android.support.design.* |
| Chris Banes | 27238d1 | 2015-04-01 15:44:41 +0100 | [diff] [blame] | 109 | include $(SUPPORT_API_CHECK) |