diff options
| author | Chia-I Wu <olv@lunarg.com> | 2010-10-11 16:07:09 +0800 | 
|---|---|---|
| committer | Chia-I Wu <olvaffe@gmail.com> | 2011-03-16 20:18:40 +0800 | 
| commit | 9a3759c3ddeee2ba4b2215074df3d21d24e65c5c (patch) | |
| tree | f7a50860909cbf540a0f1597b955ee778b32f1dd /src/gallium/drivers/i915 | |
| parent | f547fef2d066607650635136910bbcc781cf6bff (diff) | |
android: Add Android.mk's.
Diffstat (limited to 'src/gallium/drivers/i915')
| -rw-r--r-- | src/gallium/drivers/i915/Android.mk | 48 | 
1 files changed, 48 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/Android.mk b/src/gallium/drivers/i915/Android.mk new file mode 100644 index 0000000000..f2c1e5b5f8 --- /dev/null +++ b/src/gallium/drivers/i915/Android.mk @@ -0,0 +1,48 @@ +ifeq ($(strip $(MESA_BUILD_I915G)),true) + +LOCAL_PATH := $(call my-dir) + +# from Makefile +C_SOURCES = \ +	i915_blit.c \ +	i915_clear.c \ +	i915_flush.c \ +	i915_context.c \ +	i915_debug.c \ +	i915_debug_fp.c \ +	i915_state.c \ +	i915_state_immediate.c \ +	i915_state_dynamic.c \ +	i915_state_derived.c \ +	i915_state_emit.c \ +	i915_state_fpc.c \ +	i915_state_sampler.c \ +	i915_state_static.c \ +	i915_screen.c \ +	i915_prim_emit.c \ +	i915_prim_vbuf.c \ +	i915_resource.c \ +	i915_resource_texture.c \ +	i915_resource_buffer.c \ +	i915_fpc_emit.c \ +	i915_fpc_translate.c \ +	i915_surface.c  + +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := \ +	$(C_SOURCES) + +LOCAL_CFLAGS := \ +	-fvisibility=hidden \ +	-Wno-sign-compare + +LOCAL_C_INCLUDES := \ +	external/mesa/src/gallium/include \ +	external/mesa/src/gallium/auxiliary + +LOCAL_MODULE := libmesa_pipe_i915 + +include $(BUILD_STATIC_LIBRARY) + +endif # MESA_BUILD_I915G  | 
