1softmmu_ss.add(when: ['CONFIG_XEN', xen], if_true: files( 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', 8)) 9 10xen_specific_ss = ss.source_set() 11if have_xen_pci_passthrough 12 xen_specific_ss.add(files( 13 'xen-host-pci-device.c', 14 'xen_pt.c', 15 'xen_pt_config_init.c', 16 'xen_pt_graphics.c', 17 'xen_pt_load_rom.c', 18 'xen_pt_msi.c', 19 )) 20else 21 xen_specific_ss.add(files('xen_pt_stub.c')) 22endif 23 24specific_ss.add_all(when: ['CONFIG_XEN', xen], if_true: xen_specific_ss) 25