2009-03-04 03:32:27 +00:00
|
|
|
#
|
2013-06-06 02:57:57 +00:00
|
|
|
# Copyright (C) 2013 The Android Open Source Project
|
2009-03-04 03:32:27 +00: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-02 18:16:04 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Build app code.
|
|
|
|
#
|
2009-03-04 03:32:27 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2010-01-05 19:09:52 +00:00
|
|
|
LOCAL_MODULE_TAGS := optional
|
2009-03-04 03:32:27 +00:00
|
|
|
|
2013-06-06 12:00:41 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13
|
2010-02-10 14:17:35 +00:00
|
|
|
|
2013-10-02 18:16:04 +00:00
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src) \
|
2013-12-10 15:59:20 +00:00
|
|
|
$(call all-java-files-under, wallpaper_picker_src) \
|
2013-10-02 18:16:04 +00:00
|
|
|
$(call all-renderscript-files-under, src) \
|
2013-09-13 22:01:38 +00:00
|
|
|
$(call all-proto-files-under, protos)
|
2013-12-10 15:59:20 +00:00
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/wallpaper_picker_res $(LOCAL_PATH)/res
|
|
|
|
|
|
|
|
LOCAL_AAPT_FLAGS := --auto-add-overlay
|
2013-09-13 22:01:38 +00:00
|
|
|
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
2013-10-02 18:16:04 +00:00
|
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
2013-09-13 22:01:38 +00:00
|
|
|
|
2013-10-08 21:04:02 +00:00
|
|
|
LOCAL_SDK_VERSION := 19
|
2009-03-04 03:32:27 +00:00
|
|
|
|
2013-06-06 02:57:57 +00:00
|
|
|
LOCAL_PACKAGE_NAME := Launcher3
|
|
|
|
#LOCAL_CERTIFICATE := shared
|
2009-03-04 03:32:27 +00:00
|
|
|
|
2013-10-18 00:08:14 +00:00
|
|
|
LOCAL_OVERRIDES_PACKAGES := Launcher2
|
2009-03-04 03:32:27 +00:00
|
|
|
|
2010-09-29 22:25:38 +00:00
|
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
2010-02-20 02:50:32 +00:00
|
|
|
|
2009-03-04 03:32:27 +00:00
|
|
|
include $(BUILD_PACKAGE)
|
2010-07-20 08:22:10 +00:00
|
|
|
|
2011-06-17 18:26:15 +00:00
|
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|
2013-10-02 18:16:04 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Protocol Buffer Debug Utility in Java
|
|
|
|
#
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, util) \
|
|
|
|
$(call all-proto-files-under, protos)
|
|
|
|
|
|
|
|
LOCAL_PROTOC_OPTIMIZE_TYPE := nano
|
|
|
|
LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
|
|
|
|
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_MODULE := protoutil
|
|
|
|
|
|
|
|
include $(BUILD_HOST_JAVA_LIBRARY)
|