From: Philippe Mathieu-Daudé Date: Fri, 22 Jan 2021 20:44:40 +0000 (+0100) Subject: qapi/meson: Restrict system-mode specific modules X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7fdb383d04deb13ace83419188327742daa1967e;p=qemu.git qapi/meson: Restrict system-mode specific modules Signed-off-by: Philippe Mathieu-Daudé Acked-by: Paolo Bonzini Message-Id: <20210122204441.2145197-12-philmd@redhat.com> Signed-off-by: Paolo Bonzini --- diff --git a/qapi/meson.build b/qapi/meson.build index b301a46f04..7aca8d5048 100644 --- a/qapi/meson.build +++ b/qapi/meson.build @@ -18,8 +18,6 @@ if have_system or have_tools endif qapi_all_modules = [ - 'acpi', - 'audio', 'authz', 'block', 'block-core', @@ -39,14 +37,10 @@ qapi_all_modules = [ 'misc-target', 'net', 'pragma', - 'pci', 'qom', - 'rdma', 'replay', - 'rocker', 'run-state', 'sockets', - 'tpm', 'trace', 'transaction', 'ui', @@ -54,7 +48,13 @@ qapi_all_modules = [ ] if have_system qapi_all_modules += [ + 'acpi', + 'audio', 'qdev', + 'pci', + 'rdma', + 'rocker', + 'tpm', ] endif