diff options
author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2025-04-24 16:28:26 -0700 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-05-08 14:22:12 +0200 |
commit | 8def07485b9c08592b59ffe4953477286b9e947c (patch) | |
tree | c291a501b4129a8f84347d87eeb70d998e25890a | |
parent | 3efb9d22622110ca6cae18599169ab6ca2cc1a07 (diff) | |
download | qemu-8def07485b9c08592b59ffe4953477286b9e947c.zip qemu-8def07485b9c08592b59ffe4953477286b9e947c.tar.gz qemu-8def07485b9c08592b59ffe4953477286b9e947c.tar.bz2 |
hw/hyperv/balloon: common balloon compilation units
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-ID: <20250424232829.141163-6-pierrick.bouvier@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | hw/hyperv/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/hyperv/meson.build b/hw/hyperv/meson.build index a9f2045..5acd709 100644 --- a/hw/hyperv/meson.build +++ b/hw/hyperv/meson.build @@ -2,5 +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')) system_ss.add(when: 'CONFIG_VMBUS', if_true: files('vmbus.c')) system_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')) +system_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')) |