OSDN Git Service

am 48e725bd: am 56ca86b7: Merge remote-tracking branch \'goog/ub-now-lunchbox\' into...
[android-x86/packages-apps-Trebuchet.git] / Android.mk
1 #
2 # Copyright (C) 2013 The Android Open Source Project
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #      http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 LOCAL_PATH := $(call my-dir)
18
19 #
20 # Build app code.
21 #
22 include $(CLEAR_VARS)
23
24 LOCAL_MODULE_TAGS := optional
25
26 LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13
27
28 LOCAL_SRC_FILES := $(call all-java-files-under, src) \
29     $(call all-java-files-under, WallpaperPicker/src) \
30     $(call all-renderscript-files-under, src) \
31     $(call all-proto-files-under, protos)
32 LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/WallpaperPicker/res $(LOCAL_PATH)/res
33
34 LOCAL_AAPT_FLAGS := --auto-add-overlay
35
36 LOCAL_PROTOC_OPTIMIZE_TYPE := nano
37 LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
38
39 LOCAL_SDK_VERSION := 21
40
41 LOCAL_PACKAGE_NAME := Launcher3
42 #LOCAL_CERTIFICATE := shared
43
44 LOCAL_OVERRIDES_PACKAGES := Launcher2
45
46 LOCAL_PROGUARD_FLAG_FILES := proguard.flags
47
48 include $(BUILD_PACKAGE)
49
50
51 #
52 # Protocol Buffer Debug Utility in Java
53 #
54 include $(CLEAR_VARS)
55
56 LOCAL_SRC_FILES := $(call all-java-files-under, util) \
57     $(call all-proto-files-under, protos)
58
59 LOCAL_PROTOC_OPTIMIZE_TYPE := nano
60 LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
61
62 LOCAL_MODULE_TAGS := optional
63 LOCAL_MODULE := launcher_protoutil_lib
64 LOCAL_IS_HOST_MODULE := true
65 LOCAL_JAR_MANIFEST := util/etc/manifest.txt
66
67 include $(BUILD_HOST_JAVA_LIBRARY)
68
69 #
70 # Protocol Buffer Debug Utility Wrapper Script
71 #
72 include $(CLEAR_VARS)
73 LOCAL_IS_HOST_MODULE := true
74 LOCAL_MODULE_CLASS := EXECUTABLES
75 LOCAL_MODULE_TAGS := optional
76 LOCAL_MODULE := launcher_protoutil
77
78 include $(BUILD_SYSTEM)/base_rules.mk
79
80 $(LOCAL_BUILT_MODULE): | $(HOST_OUT_JAVA_LIBRARIES)/launcher_protoutil_lib.jar
81 $(LOCAL_BUILT_MODULE): $(LOCAL_PATH)/util/etc/launcher_protoutil | $(ACP)
82         @echo "Copy: $(PRIVATE_MODULE) ($@)"
83         $(copy-file-to-new-target)
84         $(hide) chmod 755 $@
85
86 include $(call all-makefiles-under,$(LOCAL_PATH))