178 lines
6.5 KiB
Makefile
178 lines
6.5 KiB
Makefile
# Copyright (C) 2014 The Android Open Source Project
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
# Build the resources using the latest applicable SDK version.
|
|
# We do this here because the final static library must be compiled with an older
|
|
# SDK version than the resources. The resources library and the R class that it
|
|
# contains will not be linked into the final static library.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_USE_AAPT2 := true
|
|
LOCAL_MODULE := android-support-v17-leanback-res
|
|
LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION)
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, dummy)
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
|
LOCAL_JAR_EXCLUDE_FILES := none
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# Base sub-library contains classes both needed by api-level specific libraries
|
|
# (e.g. KitKat) and final static library.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android-support-v17-leanback-common
|
|
LOCAL_SDK_VERSION := 17
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, common)
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-annotations
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# A helper sub-library that makes direct use of API 23.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android-support-v17-leanback-api23
|
|
LOCAL_SDK_VERSION := 23
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, api23)
|
|
LOCAL_JAVA_LIBRARIES := android-support-v17-leanback-res android-support-v17-leanback-common
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-annotations
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# A helper sub-library that makes direct use of API 21.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android-support-v17-leanback-api21
|
|
LOCAL_SDK_VERSION := 21
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, api21)
|
|
LOCAL_JAVA_LIBRARIES := android-support-v17-leanback-res android-support-v17-leanback-common
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-annotations
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# A helper sub-library that makes direct use of KitKat APIs.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android-support-v17-leanback-kitkat
|
|
LOCAL_SDK_VERSION := 19
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, kitkat)
|
|
LOCAL_JAVA_LIBRARIES := android-support-v17-leanback-res android-support-v17-leanback-common
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-annotations
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# A helper sub-library that makes direct use of JBMR2 APIs.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := android-support-v17-leanback-jbmr2
|
|
LOCAL_SDK_VERSION := 18
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, jbmr2)
|
|
LOCAL_JAVA_LIBRARIES := android-support-v17-leanback-res android-support-v17-leanback-common
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-annotations
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# Here is the final static library that apps can link against.
|
|
# Applications that use this library must specify
|
|
#
|
|
# LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
# android-support-v17-leanback \
|
|
# android-support-v7-recyclerview \
|
|
# android-support-v4 \
|
|
# android-support-annotations
|
|
#
|
|
# in their makefiles to include the resources and their dependencies in their package.
|
|
include $(CLEAR_VARS)
|
|
LOCAL_USE_AAPT2 := true
|
|
LOCAL_MODULE := android-support-v17-leanback
|
|
LOCAL_SDK_VERSION := 17
|
|
LOCAL_SDK_RES_VERSION := $(SUPPORT_CURRENT_SDK_VERSION)
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v17-leanback-kitkat \
|
|
android-support-v17-leanback-jbmr2 \
|
|
android-support-v17-leanback-api23 \
|
|
android-support-v17-leanback-api21 \
|
|
android-support-v17-leanback-common
|
|
LOCAL_STATIC_ANDROID_LIBRARIES := \
|
|
android-support-v17-leanback-res
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-v7-recyclerview \
|
|
android-support-v4 \
|
|
android-support-annotations
|
|
LOCAL_JAR_EXCLUDE_FILES := none
|
|
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
|
|
LOCAL_AAPT_FLAGS := --add-javadoc-annotation doconly
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# ===========================================================
|
|
# Common Droiddoc vars
|
|
leanback.docs.src_files := \
|
|
$(call all-java-files-under, src) \
|
|
$(call all-html-files-under, src)
|
|
leanback.docs.java_libraries := \
|
|
android-support-annotations \
|
|
android-support-v4 \
|
|
android-support-v7-recyclerview \
|
|
android-support-v17-leanback-res \
|
|
android-support-v17-leanback
|
|
|
|
# Documentation
|
|
# ===========================================================
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := android-support-v17-leanback
|
|
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
gen_res_src_dirs := $(call intermediates-dir-for,JAVA_LIBRARIES,android-support-v17-leanback-res,,COMMON)/src
|
|
|
|
LOCAL_SRC_FILES := $(leanback.docs.src_files)
|
|
LOCAL_ADDITIONAL_JAVA_DIR := $(gen_res_src_dirs)
|
|
|
|
LOCAL_SDK_VERSION := $(SUPPORT_CURRENT_SDK_VERSION)
|
|
LOCAL_IS_HOST_MODULE := false
|
|
LOCAL_DROIDDOC_CUSTOM_TEMPLATE_DIR := build/tools/droiddoc/templates-sdk
|
|
|
|
LOCAL_JAVA_LIBRARIES := $(leanback.docs.java_libraries)
|
|
|
|
LOCAL_DROIDDOC_OPTIONS := \
|
|
-offlinemode \
|
|
-hdf android.whichdoc offline \
|
|
-federate Android http://developer.android.com \
|
|
-federationapi Android prebuilts/sdk/api/17.txt \
|
|
-hide 113
|
|
|
|
include $(BUILD_DROIDDOC)
|
|
|
|
# Cleanup temp vars
|
|
# ===========================================================
|
|
leanback.docs.src_files :=
|
|
leanback.docs.java_libraries :=
|
|
gen_res_src_dirs :=
|
|
leanback_internal_api_file :=
|
|
leanback_stubs_stamp :=
|
|
leanback.docs.stubpackages :=
|