blob: 13f137a3133e46e71c761898da164fd618eefc2b [file] [log] [blame]
Craig Lafayette22f41992015-03-09 16:01:35 -04001#
2# Copyright (C) 2015 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#
16LOCAL_PATH:= $(call my-dir)
17include $(CLEAR_VARS)
18
19LOCAL_SDK_VERSION := current
20
Joe Delfinobf14a6d2015-05-11 09:16:41 -040021LOCAL_STATIC_JAVA_LIBRARIES := guava
22
Craig Lafayette22f41992015-03-09 16:01:35 -040023LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
24LOCAL_PROTOC_OPTIMIZE_TYPE := nano
25
26LOCAL_SRC_FILES := $(call all-java-files-under, src) \
27 $(call all-proto-files-under, protos)
28
29LOCAL_MODULE := ManagedProvisioningComm
30LOCAL_MODULE_TAGS := optional
31
32include $(BUILD_STATIC_JAVA_LIBRARY)
33
Joe Delfinobf14a6d2015-05-11 09:16:41 -040034include $(call all-makefiles-under,$(LOCAL_PATH))