1099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# Mesa 3-D graphics library
2099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu#
3099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
4099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# Copyright (C) 2010-2011 LunarG Inc.
5099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu#
6099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# Permission is hereby granted, free of charge, to any person obtaining a
7099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# copy of this software and associated documentation files (the "Software"),
8099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# to deal in the Software without restriction, including without limitation
9099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# the rights to use, copy, modify, merge, publish, distribute, sublicense,
10099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# and/or sell copies of the Software, and to permit persons to whom the
11099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# Software is furnished to do so, subject to the following conditions:
12099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu#
13099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# The above copyright notice and this permission notice shall be included
14099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# in all copies or substantial portions of the Software.
15099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu#
16099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# DEALINGS IN THE SOFTWARE.
23099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
24099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu# Android.mk for egl_dri2
25099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
26099faeef33a2207731986f02b1fd897d91c764c4Chia-I WuLOCAL_PATH := $(call my-dir)
27099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
28099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wuinclude $(CLEAR_VARS)
29099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
30099faeef33a2207731986f02b1fd897d91c764c4Chia-I WuLOCAL_SRC_FILES := \
31099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	egl_dri2.c \
32099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	platform_android.c
33099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
34099faeef33a2207731986f02b1fd897d91c764c4Chia-I WuLOCAL_CFLAGS := \
35099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	-DDEFAULT_DRIVER_DIR=\"/system/lib/dri\" \
36027ce0c493a85c863df88b43f61aea34bcd4cd58Matt Turner	-DHAVE_SHARED_GLAPI \
37099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	-DHAVE_ANDROID_PLATFORM
38099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
39099faeef33a2207731986f02b1fd897d91c764c4Chia-I WuLOCAL_C_INCLUDES := \
40099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	$(MESA_TOP)/src/mapi \
41099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	$(MESA_TOP)/src/egl/main \
42099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	$(DRM_GRALLOC_TOP) \
43099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	$(DRM_TOP) \
44099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu	$(DRM_TOP)/include/drm
45099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
46099faeef33a2207731986f02b1fd897d91c764c4Chia-I WuLOCAL_MODULE := libmesa_egl_dri2
47099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wu
48099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wuinclude $(MESA_COMMON_MK)
49099faeef33a2207731986f02b1fd897d91c764c4Chia-I Wuinclude $(BUILD_STATIC_LIBRARY)
50