1 # Copyright 2017-2018 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 inc_tests = include_directories('.') 22 23 subdir('util') 24 subdir('kms') 25 subdir('modeprint') 26 subdir('proptest') 27 subdir('modetest') 28 subdir('vbltest') 29 if with_libkms 30 subdir('kmstest') 31 endif 32 if with_radeon 33 subdir('radeon') 34 endif 35 if with_amdgpu 36 subdir('amdgpu') 37 endif 38 if with_exynos 39 subdir('exynos') 40 endif 41 if with_tegra 42 subdir('tegra') 43 endif 44 if with_etnaviv 45 subdir('etnaviv') 46 endif 47 if with_nouveau 48 subdir('nouveau') 49 endif 50 51 drmsl = executable( 52 'drmsl', 53 files('drmsl.c'), 54 include_directories : [inc_root, inc_drm], 55 link_with : libdrm, 56 c_args : warn_c_args, 57 ) 58 59 hash = executable( 60 'hash', 61 files('hash.c'), 62 include_directories : [inc_root, inc_drm], 63 link_with : libdrm, 64 c_args : warn_c_args, 65 ) 66 67 random = executable( 68 'random', 69 files('random.c'), 70 include_directories : [inc_root, inc_drm], 71 link_with : libdrm, 72 c_args : warn_c_args, 73 ) 74 75 drmdevice = executable( 76 'drmdevice', 77 files('drmdevice.c'), 78 include_directories : [inc_root, inc_drm], 79 link_with : libdrm, 80 c_args : warn_c_args, 81 ) 82 83 test('random', random, timeout : 240) 84 test('hash', hash) 85 test('drmsl', drmsl) 86 test('drmdevice', drmdevice) 87