OSDN Git Service

Allow to control native bridge via a property
[android-x86/device-generic-common.git] / nativebridge / Android.mk
1 #
2 # Copyright (C) 2015 The Android-x86 Open Source Project
3 #
4 # Licensed under the GNU General Public License Version 2 or later.
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.gnu.org/licenses/gpl.html
9 #
10
11 LOCAL_PATH := $(my-dir)
12
13 include $(CLEAR_VARS)
14
15 LOCAL_MODULE := libnb
16 LOCAL_SRC_FILES := src/libnb.cpp
17 LOCAL_CFLAGS := -Werror -Wall
18 LOCAL_CPPFLAGS := -std=c++11
19 LOCAL_SHARED_LIBRARIES := libcutils libdl liblog
20 LOCAL_MULTILIB := both
21
22 include $(BUILD_SHARED_LIBRARY)