radeonsi: use shader_info::cs::local_size_variable to clean up some code
[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/optimize.c \
35 ir/gp/regalloc.c \
36 ir/gp/reduce_scheduler.c \
37 ir/gp/scheduler.c \
38 ir/lima_ir.h \
39 ir/lima_nir_duplicate_consts.c \
40 ir/lima_nir_duplicate_intrinsic.c \
41 ir/lima_nir_lower_uniform_to_scalar.c \
42 ir/lima_nir_split_load_input.c \
43 ir/pp/codegen.c \
44 ir/pp/codegen.h \
45 ir/pp/disasm.c \
46 ir/pp/instr.c \
47 ir/pp/lower.c \
48 ir/pp/nir.c \
49 ir/pp/node.c \
50 ir/pp/node_to_instr.c \
51 ir/pp/ppir.h \
52 ir/pp/regalloc.c \
53 ir/pp/liveness.c \
54 ir/pp/scheduler.c \
55 lima_bo.c \
56 lima_bo.h \
57 lima_context.c \
58 lima_context.h \
59 lima_draw.c \
60 lima_fence.c \
61 lima_fence.h \
62 lima_parser.c \
63 lima_parser.h \
64 lima_program.c \
65 lima_program.h \
66 lima_query.c \
67 lima_resource.c \
68 lima_resource.h \
69 lima_screen.c \
70 lima_screen.h \
71 lima_state.c \
72 lima_job.c \
73 lima_job.h \
74 lima_texture.c \
75 lima_texture.h \
76 lima_util.c \
77 lima_util.h \
78 lima_format.c \
79 lima_format.h \
80 lima_gpu.h
81
82 LOCAL_MODULE := libmesa_pipe_lima
83
84 LOCAL_SHARED_LIBRARIES := libdrm
85
86 LOCAL_STATIC_LIBRARIES := \
87 libmesa_nir \
88 libpanfrost_shared \
89
90 LOCAL_MODULE_CLASS := STATIC_LIBRARIES
91
92 intermediates := $(call local-generated-sources-dir)
93
94 $(intermediates)/lima_nir_algebraic.c: $(LOCAL_PATH)/ir/lima_nir_algebraic.py
95 @echo "target Generated: $(PRIVATE_MODULE) <= $(notdir $(@))"
96 @mkdir -p $(dir $@)
97 $(hide) $(MESA_PYTHON2) $< -p $(MESA_TOP)/src/compiler/nir/ > $@
98
99 LOCAL_GENERATED_SOURCES := \
100 $(intermediates)/lima_nir_algebraic.c \
101
102 include $(GALLIUM_COMMON_MK)
103 include $(BUILD_STATIC_LIBRARY)
104
105 ifneq ($(HAVE_GALLIUM_LIMA),)
106 GALLIUM_TARGET_DRIVERS += lima
107 $(eval GALLIUM_LIBS += $(LOCAL_MODULE) libmesa_winsys_lima)
108 $(eval GALLIUM_SHARED_LIBS += $(LOCAL_SHARED_LIBRARIES))
109 endif