ac/nir: move ac_shader_variant_info and friends to radv folder
[mesa.git] / src / amd / common / meson.build
1 # Copyright © 2017 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # 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 THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 sid_tables_h = custom_target(
22 'sid_tables_h',
23 input : ['sid_tables.py', 'sid.h', 'gfx9d.h'],
24 output : 'sid_tables.h',
25 command : [prog_python2, '@INPUT@'],
26 capture : true,
27 )
28
29 amd_common_files = files(
30 'ac_binary.c',
31 'ac_binary.h',
32 'ac_exp_param.h',
33 'ac_llvm_build.c',
34 'ac_llvm_build.h',
35 'ac_llvm_helper.cpp',
36 'ac_llvm_util.c',
37 'ac_llvm_util.h',
38 'ac_lower_subgroups.c',
39 'ac_shader_abi.h',
40 'ac_shader_info.c',
41 'ac_shader_info.h',
42 'ac_shader_util.c',
43 'ac_shader_util.h',
44 'ac_nir_to_llvm.c',
45 'ac_nir_to_llvm.h',
46 'ac_gpu_info.c',
47 'ac_gpu_info.h',
48 'ac_surface.c',
49 'ac_surface.h',
50 'ac_debug.c',
51 'ac_debug.h',
52 )
53
54 libamd_common = static_library(
55 'amd_common',
56 [amd_common_files, sid_tables_h],
57 include_directories : [
58 inc_common, inc_compiler, inc_mesa, inc_mapi, inc_amd,
59 ],
60 dependencies : [
61 dep_llvm, dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind,
62 idep_nir_headers,
63 ],
64 c_args : [c_vis_args],
65 cpp_args : [cpp_vis_args],
66 )