]> git.proxmox.com Git - mirror_qemu.git/blame - hw/xen/meson.build
hw/virtio: Propagate page_mask to vhost_vdpa_section_end()
[mirror_qemu.git] / hw / xen / meson.build
CommitLineData
de6cd759 1system_ss.add(when: ['CONFIG_XEN_BUS'], if_true: files(
582ea95f
MAL
2 'xen-backend.c',
3 'xen-bus-helper.c',
4 'xen-bus.c',
5 'xen-legacy-backend.c',
6 'xen_devconfig.c',
7 'xen_pvdev.c',
4ca8cf09
DW
8))
9
de6cd759 10system_ss.add(when: ['CONFIG_XEN', xen], if_true: files(
b6cacfea 11 'xen-operations.c',
582ea95f
MAL
12))
13
14xen_specific_ss = ss.source_set()
215b00a5
PB
15if have_xen_pci_passthrough
16 xen_specific_ss.add(files(
17 'xen-host-pci-device.c',
18 'xen_pt.c',
19 'xen_pt_config_init.c',
20 'xen_pt_graphics.c',
21 'xen_pt_load_rom.c',
22 'xen_pt_msi.c',
23 ))
24else
ba24456b 25 xen_specific_ss.add(files('xen_pt_stub.c'))
215b00a5 26endif
582ea95f
MAL
27
28specific_ss.add_all(when: ['CONFIG_XEN', xen], if_true: xen_specific_ss)
e7218dd5
VG
29
30xen_ss = ss.source_set()
31
f17068c1
SS
32xen_ss.add(when: 'CONFIG_XEN', if_true: files(
33 'xen-mapcache.c',
34 'xen-hvm-common.c',
35))