2009-03-04 11:32:27 +08:00
|
|
|
#
|
2013-06-06 10:57:57 +08:00
|
|
|
# Copyright (C) 2013 The Android Open Source Project
|
2009-03-04 11:32:27 +08:00
|
|
|
#
|
|
|
|
# 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)
|
2013-10-03 02:16:04 +08:00
|
|
|
|
|
|
|
#
|
|
|
|
# Build app code.
|
|
|
|
#
|
2009-03-04 11:32:27 +08:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2010-01-06 03:09:52 +08:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
2009-03-04 11:32:27 +08:00
|
|
|
|
2015-07-28 09:24:45 +08:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
2016-02-19 07:09:21 +08:00
|
|
|
libWallpaperPicker \
|
2015-07-28 09:24:45 +08:00
|
|
|
android-support-v4 \
|
2016-04-02 07:05:15 +08:00
|
|
|
android-support-v7-recyclerview \
|
|
|
|
android-support-v7-palette
|
2015-07-28 09:24:45 +08:00
|
|
|
|
2013-10-03 02:16:04 +08:00
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src) \
|
2013-09-14 06:01:38 +08:00
|
|
|
$(call all-proto-files-under, protos)
|
2015-07-28 09:24:45 +08:00
|
|
|
|
2016-02-19 07:09:21 +08:00
|
|
|
LOCAL_RESOURCE_DIR := packages/apps/WallpaperPicker/res \
|
2015-07-28 09:24:45 +08:00
|
|
|
$(LOCAL_PATH)/res \
|
2016-01-05 04:19:01 +08:00
|
|
|
prebuilts/sdk/current/support/v7/recyclerview/res
|
2015-07-28 09:24:45 +08:00
|
|
|
|
2015-07-08 02:40:31 +08:00
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
2013-09-14 06:01:38 +08:00
|
|
|
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
2013-10-03 02:16:04 +08:00
|
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
2015-07-28 09:24:45 +08:00
|
|
|
LOCAL_AAPT_FLAGS := \
|
|
|
|
--auto-add-overlay \
|
2016-02-19 07:09:21 +08:00
|
|
|
--extra-packages android.support.v7.recyclerview \
|
|
|
|
--extra-packages com.android.wallpaperpicker
|
2013-09-14 06:01:38 +08:00
|
|
|
|
2015-07-08 02:40:31 +08:00
|
|
|
LOCAL_SDK_VERSION := current
|
2013-06-06 10:57:57 +08:00
|
|
|
LOCAL_PACKAGE_NAME := Launcher3
|
2015-05-21 23:20:38 +08:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Home Launcher2
|
2009-03-04 11:32:27 +08:00
|
|
|
|
|
|
|
include $(BUILD_PACKAGE)
|
2010-07-20 16:22:10 +08:00
|
|
|
|
2013-10-03 02:16:04 +08:00
|
|
|
#
|
2016-01-07 07:30:53 +08:00
|
|
|
# Launcher proto buffer jar used for development
|
2013-10-03 02:16:04 +08:00
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2016-01-07 07:30:53 +08:00
|
|
|
LOCAL_SRC_FILES := $(call all-proto-files-under, protos)
|
2013-10-03 02:16:04 +08:00
|
|
|
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
2016-01-07 07:30:53 +08:00
|
|
|
LOCAL_MODULE := launcher_proto_lib
|
2013-12-11 04:48:47 +08:00
|
|
|
LOCAL_IS_HOST_MODULE := true
|
2016-01-07 05:12:45 +08:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := host-libprotobuf-java-nano
|
2013-10-03 02:16:04 +08:00
|
|
|
|
|
|
|
include $(BUILD_HOST_JAVA_LIBRARY)
|
2013-12-11 04:48:47 +08:00
|
|
|
|
2015-03-14 01:26:27 +08:00
|
|
|
# ==================================================
|
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|