lima: add Android build
[mesa.git] / src / gallium / drivers / lima / Android.mk
1 # Copyright (C) 2019 Icenowy Zheng <icenowy@aosc.io>
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the "Software"),
5 # to deal in the Software without restriction, including without limitation
6 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # Software is furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice shall be included
11 # in all copies or substantial portions of the Software.
12 #
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19 # DEALINGS IN THE SOFTWARE.
20
21 LOCAL_PATH := $(call my-dir)
22
23 include $(CLEAR_VARS)
24
25 LOCAL_SRC_FILES := \
26 ir/gp/codegen.c \
27 ir/gp/codegen.h \
28 ir/gp/disasm.c \
29 ir/gp/gpir.h \
30 ir/gp/instr.c \
31 ir/gp/lower.c \
32 ir/gp/nir.c \
33 ir/gp/node.c \
34 ir/gp/physical_regalloc.c \
35 ir/gp/reduce_scheduler.c \
36 ir/gp/scheduler.c \
37 ir/gp/value_regalloc.c \
38 ir/lima_ir.h \
39 ir/lima_nir_lower_uniform_to_scalar.c \
40 ir/pp/codegen.c \
41 ir/pp/codegen.h \
42 ir/pp/disasm.c \
43 ir/pp/instr.c \
44 ir/pp/lower.c \
45 ir/pp/nir.c \
46 ir/pp/node.c \
47 ir/pp/node_to_instr.c \
48 ir/pp/ppir.h \
49 ir/pp/regalloc.c \
50 ir/pp/scheduler.c \
51 lima_bo.c \
52 lima_bo.h \
53 lima_context.c \
54 lima_context.h \
55 lima_draw.c \
56 lima_fence.c \
57 lima_fence.h \
58 lima_program.c \
59 lima_program.h \
60 lima_query.c \
61 lima_resource.c \
62 lima_resource.h \
63 lima_screen.c \
64 lima_screen.h \
65 lima_state.c \
66 lima_submit.c \
67 lima_submit.h \
68 lima_texture.c \
69 lima_texture.h \
70 lima_tiling.c \
71 lima_tiling.h \
72 lima_util.c \
73 lima_util.h
74
75 LOCAL_MODULE := libmesa_pipe_lima
76
77 LOCAL_SHARED_LIBRARIES := libdrm
78
79 LOCAL_STATIC_LIBRARIES := libmesa_nir
80
81 include $(GALLIUM_COMMON_MK)
82 include $(BUILD_STATIC_LIBRARY)
83
84 ifneq ($(HAVE_GALLIUM_LIMA),)
85 GALLIUM_TARGET_DRIVERS += lima
86 $(eval GALLIUM_LIBS += $(LOCAL_MODULE) libmesa_winsys_lima)
87 $(eval GALLIUM_SHARED_LIBS += $(LOCAL_SHARED_LIBRARIES))
88 endif