mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
25 lines
1.2 KiB
CMake
25 lines
1.2 KiB
CMake
# NOTE: This kind of mocking currently works on Linux targets only.
|
|
# On Espressif chips, too many dependencies are missing at the moment.
|
|
message(STATUS "building USB HOST MOCKS")
|
|
|
|
idf_component_get_property(original_usb_dir usb COMPONENT_OVERRIDEN_DIR)
|
|
|
|
idf_component_mock(INCLUDE_DIRS "${original_usb_dir}/include"
|
|
"${original_usb_dir}/include/esp_private"
|
|
"${original_usb_dir}/include/usb"
|
|
"${original_usb_dir}/private_include"
|
|
"include"
|
|
MOCK_HEADER_FILES ${original_usb_dir}/include/usb/usb_host.h
|
|
${original_usb_dir}/include/esp_private/usb_phy.h
|
|
REQUIRES freertos)
|
|
|
|
|
|
# We do not mock usb_helpers. We use the original implementation.
|
|
# This way, we can test Class drivers descriptor parsing
|
|
target_sources(${COMPONENT_LIB} PRIVATE "${original_usb_dir}/usb_helpers.c")
|
|
# Original implementation of usb_private.c to allocate memory for transfers
|
|
target_sources(${COMPONENT_LIB} PRIVATE "${original_usb_dir}/usb_private.c")
|
|
|
|
# Add the extra src files for USB device mocking
|
|
target_sources(${COMPONENT_LIB} PRIVATE "mock_add_usb_device.c")
|