bohu | 294d44b | 2017-02-28 14:58:36 -0800 | [diff] [blame^] | 1 | # Copyright 2011 The Android Open Source Project |
| 2 | |
| 3 | LOCAL_PATH:= $(call my-dir) |
| 4 | |
| 5 | common_static_libraries := \ |
| 6 | libbase |
| 7 | include $(CLEAR_VARS) |
| 8 | LOCAL_CLANG := true |
| 9 | LOCAL_SANITIZE := integer |
| 10 | LOCAL_SRC_FILES:= \ |
| 11 | qemu_pipe.cpp |
| 12 | LOCAL_C_INCLUDES := \ |
| 13 | $(LOCAL_PATH)/include \ |
| 14 | system/base/include |
| 15 | LOCAL_MODULE:= libqemu_pipe |
| 16 | LOCAL_STATIC_LIBRARIES := $(common_static_libraries) |
| 17 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| 18 | LOCAL_CFLAGS := -Werror |
| 19 | include $(BUILD_STATIC_LIBRARY) |