blob: 19d8794f2821b00f6b4d110c85ae78e6b5edb371 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
ifeq ($(HOST_OS),linux)
LOCAL_PATH := $(call my-dir)
$(call emugl-begin-host-static-library,libEGL_host_wrapper)
LOCAL_SRC_FILES := \
egl.cpp \
egl_dispatch.cpp
$(call emugl-export,LDLIBS,-ldl -pthread)
$(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
$(call emugl-end-module)
endif # HOST_OS == linux
|