1# SPDX-License-Identifier: Apache-2.0
2
3zephyr_library()
4if(CONFIG_NET_DSA_DEPRECATED)
5zephyr_library_sources(dsa.c)
6else()
7zephyr_library_sources(dsa_core.c)
8zephyr_library_sources(dsa_port.c)
9zephyr_library_sources(dsa_user.c)
10zephyr_library_sources(dsa_tag.c)
11zephyr_library_sources_ifdef(CONFIG_DSA_TAG_PROTOCOL_NETC dsa_tag_netc.c)
12endif()
13