• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (C) 2011 Intel Corporation
3#
4# Permission is hereby granted, free of charge, to any person obtaining a
5# copy of this software and associated documentation files (the "Software"),
6# to deal in the Software without restriction, including without limitation
7# the rights to use, copy, modify, merge, publish, distribute, sublicense,
8# and/or sell copies of the Software, and to permit persons to whom the
9# Software is furnished to do so, subject to the following conditions:
10#
11# The above copyright notice and this permission notice shall be included
12# in all copies or substantial portions of the Software.
13#
14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20# DEALINGS IN THE SOFTWARE.
21#
22
23LOCAL_PATH := $(call my-dir)
24
25# Import mesa_dri_common_INCLUDES.
26include $(LOCAL_PATH)/common/Makefile.sources
27
28#-----------------------------------------------
29# Variables common to all DRI drivers
30
31MESA_DRI_CFLAGS := \
32	-DHAVE_ANDROID_PLATFORM
33
34MESA_DRI_C_INCLUDES := \
35	$(addprefix $(MESA_TOP)/, $(mesa_dri_common_INCLUDES)) \
36	$(MESA_TOP)/src/gallium/include \
37	$(MESA_TOP)/src/gallium/auxiliary \
38	external/expat/lib
39
40MESA_DRI_WHOLE_STATIC_LIBRARIES := \
41	libmesa_glsl \
42	libmesa_compiler \
43	libmesa_nir \
44	libmesa_megadriver_stub \
45	libmesa_dri_common \
46	libmesa_dricore \
47	libmesa_util
48
49MESA_DRI_SHARED_LIBRARIES := \
50	libcutils \
51	libdl \
52	libglapi \
53	liblog \
54	libsync \
55	libz
56
57# If Android version >=8 MESA should static link libexpat else should dynamic link
58ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 27; echo $$?), 0)
59MESA_DRI_WHOLE_STATIC_LIBRARIES += \
60	libexpat
61else
62MESA_DRI_SHARED_LIBRARIES += \
63	libexpat
64endif
65
66#-----------------------------------------------
67# Build drivers and libmesa_dri_common
68
69SUBDIRS := common i915 i965
70include $(foreach d, $(SUBDIRS), $(LOCAL_PATH)/$(d)/Android.mk)
71