summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2016-05-25 09:59:02 -0400
committerRob Clark <[email protected]>2016-05-25 16:31:15 -0400
commitec434d940d9ade664ed9ddf74760ce1dcc432718 (patch)
tree8d718b665a54c1a732ed3dff4afe3dd9ecc27a6b
parent61847d77084215ca23bf89517c282a78bc9726b9 (diff)
android: drop build of standalone glsl_compiler
It's only a tool for debugging the glsl compiler, and should not be installed. Signed-off-by: Rob Clark <[email protected]> Tested-by: Rob Herring <[email protected]> Acked-by: Emil Velikov <[email protected]>
-rw-r--r--src/compiler/Android.glsl.mk22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/compiler/Android.glsl.mk b/src/compiler/Android.glsl.mk
index d9cf06d208f..8184d2dc898 100644
--- a/src/compiler/Android.glsl.mk
+++ b/src/compiler/Android.glsl.mk
@@ -51,25 +51,3 @@ include $(LOCAL_PATH)/Android.glsl.gen.mk
include $(MESA_COMMON_MK)
include $(BUILD_STATIC_LIBRARY)
-# ---------------------------------------
-# Build glsl_compiler
-# ---------------------------------------
-
-include $(CLEAR_VARS)
-
-LOCAL_SRC_FILES := \
- $(GLSL_COMPILER_CXX_FILES)
-
-LOCAL_C_INCLUDES := \
- $(MESA_TOP)/src/mapi \
- $(MESA_TOP)/src/mesa \
- $(MESA_TOP)/src/gallium/include \
- $(MESA_TOP)/src/gallium/auxiliary
-
-LOCAL_STATIC_LIBRARIES := libmesa_glsl libmesa_glsl_utils libmesa_util libmesa_compiler
-
-LOCAL_MODULE_TAGS := eng
-LOCAL_MODULE := glsl_compiler
-
-include $(MESA_COMMON_MK)
-include $(BUILD_EXECUTABLE)