blob: 3b1a244bbf94d31316d37a6dcc80582622739db4 [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001#
Daniel Sandler325dc232013-06-05 22:57:57 -04002# Copyright (C) 2013 The Android Open Source Project
The Android Open Source Project31dd5032009-03-03 19:32:27 -08003#
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
17LOCAL_PATH := $(call my-dir)
Chris Wren2b6c21d2013-10-02 14:16:04 -040018
19#
20# Build app code.
21#
The Android Open Source Project31dd5032009-03-03 19:32:27 -080022include $(CLEAR_VARS)
23
Jean-Baptiste Queru2583ac52010-01-05 11:09:52 -080024LOCAL_MODULE_TAGS := optional
The Android Open Source Project31dd5032009-03-03 19:32:27 -080025
Bjorn Bringert32b12d22013-06-06 13:00:41 +010026LOCAL_STATIC_JAVA_LIBRARIES := android-support-v13
Bjorn Bringert3e244cf2010-02-10 14:17:35 +000027
Chris Wren2b6c21d2013-10-02 14:16:04 -040028LOCAL_SRC_FILES := $(call all-java-files-under, src) \
29 $(call all-renderscript-files-under, src) \
Chris Wren1ada10d2013-09-13 18:01:38 -040030 $(call all-proto-files-under, protos)
31
32LOCAL_PROTOC_OPTIMIZE_TYPE := nano
Chris Wren2b6c21d2013-10-02 14:16:04 -040033LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
Chris Wren1ada10d2013-09-13 18:01:38 -040034
Mathew Inwoodda608c92013-10-08 14:04:02 -070035LOCAL_SDK_VERSION := 19
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036
Daniel Sandler325dc232013-06-05 22:57:57 -040037LOCAL_PACKAGE_NAME := Launcher3
38#LOCAL_CERTIFICATE := shared
The Android Open Source Project31dd5032009-03-03 19:32:27 -080039
Jean-Baptiste Queru2b75fb52010-03-03 11:27:21 -080040LOCAL_OVERRIDES_PACKAGES := Home
The Android Open Source Project31dd5032009-03-03 19:32:27 -080041
Ying Wangb159e772010-09-29 15:25:38 -070042LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Ying Wang77de1172010-02-19 18:50:32 -080043
The Android Open Source Project31dd5032009-03-03 19:32:27 -080044include $(BUILD_PACKAGE)
Shih-wei Liao163feae2010-07-20 01:22:10 -070045
Tsu Chiang Chuang923aa622011-06-17 11:26:15 -070046include $(call all-makefiles-under,$(LOCAL_PATH))
Chris Wren2b6c21d2013-10-02 14:16:04 -040047
48#
49# Protocol Buffer Debug Utility in Java
50#
51include $(CLEAR_VARS)
52
53LOCAL_SRC_FILES := $(call all-java-files-under, util) \
54 $(call all-proto-files-under, protos)
55
56LOCAL_PROTOC_OPTIMIZE_TYPE := nano
57LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
58
59LOCAL_MODULE_TAGS := optional
60LOCAL_MODULE := protoutil
61
62include $(BUILD_HOST_JAVA_LIBRARY)