blob: 2a2b087dc03274fa5aa97da06f5b712641e4e3af [file] [log] [blame]
Yi Jinc23fad22017-09-15 17:24:59 -07001#
2# Copyright (C) 2017 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_MODULE := libprotoutil
20
21LOCAL_CFLAGS := \
22 -Wall -Werror -Wno-missing-field-initializers -Wno-unused-variable -Wunused-parameter
23
24LOCAL_SHARED_LIBRARIES := \
Yi Jin974a9c22017-10-02 18:37:08 -070025 libcutils \
Yi Jinc23fad22017-09-15 17:24:59 -070026 liblog \
Yi Jinc23fad22017-09-15 17:24:59 -070027
28LOCAL_C_INCLUDES := \
29 $(LOCAL_PATH)/include
30
31LOCAL_SRC_FILES := \
32 src/EncodedBuffer.cpp \
Yi Jin974a9c22017-10-02 18:37:08 -070033 src/ProtoOutputStream.cpp \
Yi Jinc23fad22017-09-15 17:24:59 -070034 src/protobuf.cpp \
35
36LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include
37
38include $(BUILD_SHARED_LIBRARY)
39