meson.build (c1b29826279b7405990ccb521d1fb5a24db2e58e) meson.build (326ccfe240ca9ef4f659a241b39390fa956e999b)
1softmmu_ss.add(when: 'CONFIG_APPLESMC', if_true: files('applesmc.c'))
2softmmu_ss.add(when: 'CONFIG_EDU', if_true: files('edu.c'))
3softmmu_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('vmcoreinfo.c'))
4softmmu_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugexit.c'))
5softmmu_ss.add(when: 'CONFIG_ISA_TESTDEV', if_true: files('pc-testdev.c'))
6softmmu_ss.add(when: 'CONFIG_MAX111X', if_true: files('max111x.c'))
7softmmu_ss.add(when: 'CONFIG_PCA9552', if_true: files('pca9552.c'))
8softmmu_ss.add(when: 'CONFIG_PCI_TESTDEV', if_true: files('pci-testdev.c'))
9softmmu_ss.add(when: 'CONFIG_SGA', if_true: files('sga.c'))
10softmmu_ss.add(when: 'CONFIG_TMP105', if_true: files('tmp105.c'))
11softmmu_ss.add(when: 'CONFIG_TMP421', if_true: files('tmp421.c'))
12softmmu_ss.add(when: 'CONFIG_UNIMP', if_true: files('unimp.c'))
13softmmu_ss.add(when: 'CONFIG_EMPTY_SLOT', if_true: files('empty_slot.c'))
1softmmu_ss.add(when: 'CONFIG_APPLESMC', if_true: files('applesmc.c'))
2softmmu_ss.add(when: 'CONFIG_EDU', if_true: files('edu.c'))
3softmmu_ss.add(when: 'CONFIG_FW_CFG_DMA', if_true: files('vmcoreinfo.c'))
4softmmu_ss.add(when: 'CONFIG_ISA_DEBUG', if_true: files('debugexit.c'))
5softmmu_ss.add(when: 'CONFIG_ISA_TESTDEV', if_true: files('pc-testdev.c'))
6softmmu_ss.add(when: 'CONFIG_MAX111X', if_true: files('max111x.c'))
7softmmu_ss.add(when: 'CONFIG_PCA9552', if_true: files('pca9552.c'))
8softmmu_ss.add(when: 'CONFIG_PCI_TESTDEV', if_true: files('pci-testdev.c'))
9softmmu_ss.add(when: 'CONFIG_SGA', if_true: files('sga.c'))
10softmmu_ss.add(when: 'CONFIG_TMP105', if_true: files('tmp105.c'))
11softmmu_ss.add(when: 'CONFIG_TMP421', if_true: files('tmp421.c'))
12softmmu_ss.add(when: 'CONFIG_UNIMP', if_true: files('unimp.c'))
13softmmu_ss.add(when: 'CONFIG_EMPTY_SLOT', if_true: files('empty_slot.c'))
14softmmu_ss.add(when: 'CONFIG_LED', if_true: files('led.c'))
15
16# ARM devices
17softmmu_ss.add(when: 'CONFIG_PL310', if_true: files('arm_l2x0.c'))
18softmmu_ss.add(when: 'CONFIG_INTEGRATOR_DEBUG', if_true: files('arm_integrator_debug.c'))
19softmmu_ss.add(when: 'CONFIG_A9SCU', if_true: files('a9scu.c'))
20softmmu_ss.add(when: 'CONFIG_ARM11SCU', if_true: files('arm11scu.c'))
21
22# Mac devices

--- 32 unchanged lines hidden (view full) ---

55 'imx_ccm.c',
56 'imx_rngc.c',
57))
58softmmu_ss.add(when: 'CONFIG_MILKYMIST', if_true: files('milkymist-hpdmc.c', 'milkymist-pfpu.c'))
59softmmu_ss.add(when: 'CONFIG_MAINSTONE', if_true: files('mst_fpga.c'))
60softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files(
61 'npcm7xx_clk.c',
62 'npcm7xx_gcr.c',
14
15# ARM devices
16softmmu_ss.add(when: 'CONFIG_PL310', if_true: files('arm_l2x0.c'))
17softmmu_ss.add(when: 'CONFIG_INTEGRATOR_DEBUG', if_true: files('arm_integrator_debug.c'))
18softmmu_ss.add(when: 'CONFIG_A9SCU', if_true: files('a9scu.c'))
19softmmu_ss.add(when: 'CONFIG_ARM11SCU', if_true: files('arm11scu.c'))
20
21# Mac devices

--- 32 unchanged lines hidden (view full) ---

54 'imx_ccm.c',
55 'imx_rngc.c',
56))
57softmmu_ss.add(when: 'CONFIG_MILKYMIST', if_true: files('milkymist-hpdmc.c', 'milkymist-pfpu.c'))
58softmmu_ss.add(when: 'CONFIG_MAINSTONE', if_true: files('mst_fpga.c'))
59softmmu_ss.add(when: 'CONFIG_NPCM7XX', if_true: files(
60 'npcm7xx_clk.c',
61 'npcm7xx_gcr.c',
62 'npcm7xx_rng.c',
63))
64softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files(
65 'omap_clk.c',
66 'omap_gpmc.c',
67 'omap_l4.c',
68 'omap_sdrc.c',
69 'omap_tap.c',
70))

--- 42 unchanged lines hidden ---
63))
64softmmu_ss.add(when: 'CONFIG_OMAP', if_true: files(
65 'omap_clk.c',
66 'omap_gpmc.c',
67 'omap_l4.c',
68 'omap_sdrc.c',
69 'omap_tap.c',
70))

--- 42 unchanged lines hidden ---