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