blob: 3d84319b53ae20f3fee9e6f9841e71b2c525b710 [file] [log] [blame]
Alex Vakulenkoe4eec202017-01-27 14:41:04 -08001LOCAL_PATH := $(call my-dir)
2
3sourceFiles := \
4 blur.cpp \
5 debug_text.cpp \
6 egl_image.cpp \
7 gpu_profiler.cpp \
8 shader_program.cpp \
9 timer_query.cpp \
10 vr_gl_extensions.cpp \
11
12includeFiles := \
13 $(LOCAL_PATH)/include
14
15staticLibraries := \
16 libchrome \
17 libbufferhub \
18 libdvrcommon \
19 libpdx_default_transport \
20
21sharedLibraries := \
22 libcutils \
23 libbase \
24 libpng
25
26include $(CLEAR_VARS)
27LOCAL_SRC_FILES := $(sourceFiles)
28LOCAL_C_INCLUDES := $(includeFiles)
29LOCAL_CFLAGS := -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
30LOCAL_EXPORT_C_INCLUDE_DIRS := $(includeFiles)
31LOCAL_SHARED_LIBRARIES := $(sharedLibraries)
32LOCAL_STATIC_LIBRARIES := $(staticLibraries)
33LOCAL_MODULE := libdvrgraphics
34include $(BUILD_STATIC_LIBRARY)
35