You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
348 B
16 lines
348 B
4 months ago
|
LOCAL_PATH:= $(call my-dir)
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_MODULE_TAGS := optional
|
||
|
LOCAL_MODULE_PATH := $(PRODUCT_OUT)/system/app
|
||
|
|
||
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
||
|
|
||
|
LOCAL_PACKAGE_NAME := LeanbackWidget
|
||
|
LOCAL_LICENSE_KINDS := legacy_notice
|
||
|
LOCAL_LICENSE_CONDITIONS := notice
|
||
|
|
||
|
LOCAL_SDK_VERSION := current
|
||
|
|
||
|
include $(BUILD_PACKAGE)
|