meson: Remove build_by_default from amd code

This is the same logic as the previous two patches.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Dylan Baker 2017-11-13 11:16:28 -08:00
parent 49fa074726
commit 46a7fdd7ca
3 changed files with 3 additions and 3 deletions

View File

@ -57,5 +57,4 @@ libamdgpu_addrlib = static_library(
'core', 'inc/chip/gfx9', 'inc/chip/r800', 'gfx9/chip', 'r800/chip',
'../common', '../../'),
cpp_args : [cpp_vis_args, '-DBRAHMA_BUILD=1'],
build_by_default : false,
)

View File

@ -59,5 +59,4 @@ libamd_common = static_library(
dep_valgrind],
c_args : [c_vis_args],
cpp_args : [cpp_vis_args],
build_by_default : false,
)

View File

@ -51,7 +51,9 @@ subdir('mapi')
subdir('compiler')
subdir('egl/wayland/wayland-drm')
subdir('vulkan')
subdir('amd')
if with_gallium_radeonsi or with_amd_vk
subdir('amd')
endif
if with_gallium_vc4
subdir('broadcom')
endif