From: Pierrick Bouvier Date: Thu, 24 Apr 2025 23:28:22 +0000 (-0700) Subject: hw/hyperv/hv-balloon-stub: common compilation unit X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d49a5e8bfcaa550211d10476fa14df02bd41bdb;p=thirdparty%2Fqemu.git hw/hyperv/hv-balloon-stub: common compilation unit Reviewed-by: Richard Henderson Signed-off-by: Pierrick Bouvier Message-ID: <20250424232829.141163-2-pierrick.bouvier@linaro.org> Signed-off-by: Philippe Mathieu-Daudé --- diff --git a/hw/hyperv/meson.build b/hw/hyperv/meson.build index d3d2668c71..f4aa0a5ada 100644 --- a/hw/hyperv/meson.build +++ b/hw/hyperv/meson.build @@ -2,4 +2,5 @@ specific_ss.add(when: 'CONFIG_HYPERV', if_true: files('hyperv.c')) specific_ss.add(when: 'CONFIG_HYPERV_TESTDEV', if_true: files('hyperv_testdev.c')) specific_ss.add(when: 'CONFIG_VMBUS', if_true: files('vmbus.c')) specific_ss.add(when: 'CONFIG_SYNDBG', if_true: files('syndbg.c')) -specific_ss.add(when: 'CONFIG_HV_BALLOON', if_true: files('hv-balloon.c', 'hv-balloon-page_range_tree.c', 'hv-balloon-our_range_memslots.c'), if_false: files('hv-balloon-stub.c')) +specific_ss.add(when: 'CONFIG_HV_BALLOON', if_true: files('hv-balloon.c', 'hv-balloon-page_range_tree.c', 'hv-balloon-our_range_memslots.c')) +system_ss.add(when: 'CONFIG_HV_BALLOON', if_false: files('hv-balloon-stub.c'))