X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fmeson.build;h=34c0276487bd8149c0be630c578e8a79e93e9827;hb=07baabb6a51a2d6a8cfcdc52acee2ce629f5c22e;hp=d9e331ec85cba8a0fa73c508706c72272513c2ed;hpb=1539acc20a63ec36d1045cdc2e1ae0e6fd0499a2;p=dpdk.git diff --git a/drivers/meson.build b/drivers/meson.build index d9e331ec85..34c0276487 100644 --- a/drivers/meson.build +++ b/drivers/meson.build @@ -10,8 +10,9 @@ subdirs = [ 'common/qat', # depends on bus. 'common/sfc_efx', # depends on bus. 'mempool', # depends on common and bus. + 'dma', # depends on common and bus. 'net', # depends on common, bus, mempool - 'raw', # depends on common, bus and net. + 'raw', # depends on common, bus, dma and net. 'crypto', # depends on common, bus and mempool (net in future). 'compress', # depends on common, bus, mempool. 'regex', # depends on common, bus, regexdev. @@ -109,16 +110,19 @@ foreach subpath:subdirs build = false reason = 'explicitly disabled via build config' endif - else - # pull in driver directory which should update all the local variables - subdir(drv_path) endif if build + # pull in driver directory which should update all the local variables + subdir(drv_path) + # get dependency objs from strings shared_deps = ext_deps static_deps = ext_deps foreach d:deps + if not build + break + endif if not is_variable('shared_rte_' + d) build = false reason = 'missing internal dependency, "@0@"'.format(d)