cachepc-qemu

Fork of AMDESE/qemu with changes for cachepc side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-qemu
Log | Files | Refs | Submodules | LICENSE | sfeed.txt

meson.build (2070B)


      1acpi_ss = ss.source_set()
      2acpi_ss.add(files(
      3  'acpi_interface.c',
      4  'aml-build.c',
      5  'bios-linker-loader.c',
      6  'core.c',
      7  'utils.c',
      8))
      9acpi_ss.add(when: 'CONFIG_ACPI_CPU_HOTPLUG', if_true: files('cpu.c', 'cpu_hotplug.c'))
     10acpi_ss.add(when: 'CONFIG_ACPI_CPU_HOTPLUG', if_false: files('acpi-cpu-hotplug-stub.c'))
     11acpi_ss.add(when: 'CONFIG_ACPI_MEMORY_HOTPLUG', if_true: files('memory_hotplug.c'))
     12acpi_ss.add(when: 'CONFIG_ACPI_MEMORY_HOTPLUG', if_false: files('acpi-mem-hotplug-stub.c'))
     13acpi_ss.add(when: 'CONFIG_ACPI_NVDIMM', if_true: files('nvdimm.c'))
     14acpi_ss.add(when: 'CONFIG_ACPI_NVDIMM', if_false: files('acpi-nvdimm-stub.c'))
     15acpi_ss.add(when: 'CONFIG_ACPI_PCI', if_true: files('pci.c'))
     16acpi_ss.add(when: 'CONFIG_ACPI_VMGENID', if_true: files('vmgenid.c'))
     17acpi_ss.add(when: 'CONFIG_ACPI_HW_REDUCED', if_true: files('generic_event_device.c'))
     18acpi_ss.add(when: 'CONFIG_ACPI_HMAT', if_true: files('hmat.c'))
     19acpi_ss.add(when: 'CONFIG_ACPI_APEI', if_true: files('ghes.c'), if_false: files('ghes-stub.c'))
     20acpi_ss.add(when: 'CONFIG_ACPI_PIIX4', if_true: files('piix4.c'))
     21acpi_ss.add(when: 'CONFIG_ACPI_PCIHP', if_true: files('pcihp.c'))
     22acpi_ss.add(when: 'CONFIG_ACPI_PCIHP', if_false: files('acpi-pci-hotplug-stub.c'))
     23acpi_ss.add(when: 'CONFIG_ACPI_X86_ICH', if_true: files('ich9.c', 'tco.c'))
     24acpi_ss.add(when: 'CONFIG_IPMI', if_true: files('ipmi.c'), if_false: files('ipmi-stub.c'))
     25acpi_ss.add(when: 'CONFIG_PC', if_false: files('acpi-x86-stub.c'))
     26acpi_ss.add(when: 'CONFIG_TPM', if_true: files('tpm.c'))
     27softmmu_ss.add(when: 'CONFIG_ACPI', if_false: files('acpi-stub.c', 'aml-build-stub.c', 'ghes-stub.c'))
     28softmmu_ss.add_all(when: 'CONFIG_ACPI', if_true: acpi_ss)
     29softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('acpi-stub.c', 'aml-build-stub.c',
     30                                                  'acpi-x86-stub.c', 'ipmi-stub.c', 'ghes-stub.c',
     31                                                  'acpi-mem-hotplug-stub.c', 'acpi-cpu-hotplug-stub.c',
     32                                                  'acpi-pci-hotplug-stub.c', 'acpi-nvdimm-stub.c'))