etnaviv: update Android build files
authorMartin Fuzzey <martin.fuzzey@flowbird.group>
Fri, 17 Jan 2020 16:37:03 +0000 (17:37 +0100)
committerMarge Bot <eric+marge@anholt.net>
Fri, 24 Jan 2020 14:03:28 +0000 (14:03 +0000)
etnaviv no longer builds on Android, fix this.

Signed-off-by: Martin Fuzzey <martin.fuzzey@flowbird.group>
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3447>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3447>

Android.mk
src/etnaviv/Android.mk [new file with mode: 0644]
src/etnaviv/drm/Android.mk [new file with mode: 0644]
src/etnaviv/drm/Makefile.sources [new file with mode: 0644]
src/gallium/Android.common.mk
src/gallium/drivers/etnaviv/Android.mk
src/gallium/targets/dri/Android.mk
src/gallium/winsys/etnaviv/drm/Android.mk

index ef496c1e33ec112605183e91ea5581b2ba8ba09c..59d345b8af4f8629ee5d3743bf033937a83bb8f9 100644 (file)
@@ -97,6 +97,7 @@ endef
 
 # add subdirectories
 SUBDIRS := \
+       src/etnaviv \
        src/freedreno \
        src/gbm \
        src/loader \
diff --git a/src/etnaviv/Android.mk b/src/etnaviv/Android.mk
new file mode 100644 (file)
index 0000000..9b949c3
--- /dev/null
@@ -0,0 +1,28 @@
+# Mesa 3-D graphics library
+#
+# Copyright (C)
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+# Android.mk for libetnaviv_*
+
+SUBDIRS := drm
+
+INC_DIRS := $(call all-named-subdir-makefiles,$(sort $(SUBDIRS)))
+include $(INC_DIRS)
diff --git a/src/etnaviv/drm/Android.mk b/src/etnaviv/drm/Android.mk
new file mode 100644 (file)
index 0000000..a1f55ca
--- /dev/null
@@ -0,0 +1,46 @@
+# Mesa 3-D graphics library
+#
+# Copyright (C)
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+# Android.mk for libetnaviv_drm.a
+
+# ---------------------------------------
+# Build libetnaviv_drm
+# ---------------------------------------
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+
+# get C_SOURCES
+include $(LOCAL_PATH)/Makefile.sources
+
+LOCAL_SRC_FILES := \
+       $(C_SOURCES)
+
+LOCAL_C_INCLUDES := \
+       $(MESA_TOP)/src/gallium/include \
+       $(MESA_TOP)/src/gallium/auxiliary
+
+LOCAL_MODULE := libetnaviv_drm
+
+include $(MESA_COMMON_MK)
+include $(BUILD_STATIC_LIBRARY)
diff --git a/src/etnaviv/drm/Makefile.sources b/src/etnaviv/drm/Makefile.sources
new file mode 100644 (file)
index 0000000..21d7f4a
--- /dev/null
@@ -0,0 +1,10 @@
+C_SOURCES :=  \
+       etnaviv_device.c        \
+       etnaviv_gpu.c           \
+       etnaviv_bo.c            \
+       etnaviv_bo_cache.c      \
+       etnaviv_perfmon.c       \
+       etnaviv_pipe.c          \
+       etnaviv_cmd_stream.c    \
+       etnaviv_drmif.h         \
+       etnaviv_priv.h
index 0d55f04ac944d8df657425b0e13a1a3c64984c5f..3f7779892df8bdff30118ed8db68e19c7059a0e7 100644 (file)
@@ -28,6 +28,7 @@ LOCAL_C_INCLUDES += \
        $(GALLIUM_TOP)/auxiliary \
        $(GALLIUM_TOP)/winsys \
        $(GALLIUM_TOP)/drivers \
+       $(MESA_TOP)/src/etnaviv \
        $(MESA_TOP)/src/freedreno \
        $(MESA_TOP)/src/freedreno/ir3 \
        $(MESA_TOP)/src/freedreno/registers
index 6976d223c2118b3ca775935c3bdfb331433027a3..3ba6b819f89276c6636c3a2fc5be68433b59dec4 100644 (file)
@@ -28,7 +28,10 @@ include $(CLEAR_VARS)
 LOCAL_SRC_FILES := \
        $(C_SOURCES)
 
-LOCAL_SHARED_LIBRARIES := libdrm_etnaviv
+LOCAL_GENERATED_SOURCES := $(MESA_GEN_NIR_H)
+
+LOCAL_SHARED_LIBRARIES := libdrm
+LOCAL_STATIC_LIBRARIES := libmesa_nir libetnaviv_drm
 LOCAL_MODULE := libmesa_pipe_etnaviv
 
 include $(GALLIUM_COMMON_MK)
index c666312b77929426cd554783f2d610a08c049fa8..31d33b255d64fe0836c15bccd77a2e2c6c1ecb4c 100644 (file)
@@ -55,6 +55,7 @@ LOCAL_SHARED_LIBRARIES += \
 endif
 
 LOCAL_STATIC_LIBRARIES += \
+       libetnaviv_drm \
        libfreedreno_drm \
        libfreedreno_ir3 \
        libmesa_gallium \
index 32091bea0e987402bad7f7c2d1df88f1934f20fc..31edabd68d69b6fbd5ae1f64e3555c5e046f7b51 100644 (file)
@@ -25,7 +25,7 @@ include $(CLEAR_VARS)
 
 LOCAL_SRC_FILES := $(C_SOURCES)
 
-LOCAL_SHARED_LIBRARIES := libdrm_etnaviv
+LOCAL_STATIC_LIBRARIES := libmesa_nir libetnaviv_drm
 
 LOCAL_MODULE := libmesa_winsys_etnaviv