1# Copyright (c) 2021 Nordic Semiconductor ASA 2# SPDX-License-Identifier: Apache-2.0 3 4zephyr_library() 5 6zephyr_library_sources(udc_common.c) 7zephyr_library_include_directories(${ZEPHYR_BASE}/drivers/usb/common/) 8 9zephyr_library_sources_ifdef(CONFIG_UDC_DWC2 udc_dwc2.c) 10zephyr_library_sources_ifdef(CONFIG_UDC_NRF udc_nrf.c) 11zephyr_library_sources_ifdef(CONFIG_UDC_KINETIS udc_kinetis.c) 12zephyr_library_sources_ifdef(CONFIG_UDC_SKELETON udc_skeleton.c) 13zephyr_library_sources_ifdef(CONFIG_UDC_VIRTUAL udc_virtual.c) 14zephyr_library_sources_ifdef(CONFIG_UDC_SMARTBOND udc_smartbond.c) 15zephyr_library_sources_ifdef(CONFIG_UDC_STM32 udc_stm32.c) 16zephyr_library_sources_ifdef(CONFIG_UDC_IT82XX2 udc_it82xx2.c) 17zephyr_library_sources_ifdef(CONFIG_UDC_NXP_EHCI udc_mcux_ehci.c) 18zephyr_library_sources_ifdef(CONFIG_UDC_NXP_IP3511 udc_mcux_ip3511.c) 19zephyr_library_sources_ifdef(CONFIG_UDC_NUMAKER udc_numaker.c) 20zephyr_library_sources_ifdef(CONFIG_UDC_RPI_PICO udc_rpi_pico.c) 21zephyr_library_sources_ifdef(CONFIG_UDC_AMBIQ udc_ambiq.c) 22zephyr_library_sources_ifdef(CONFIG_UDC_RENESAS_RA udc_renesas_ra.c) 23