12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- dtls_inc = [
- "mbedtls/mbedtls_port",
- "../../inc",
- "../../link_misc",
- "//kernel/liteos_m/components/cmsis/2.0",
- "//third_party/mbedtls/include/",
- ]
- dtls_src = [
- "dtls_al/dtls_al.c",
- "mbedtls/mbedtls_port/dtls_interface.c",
- "mbedtls/mbedtls_port/mbed_port.c",
- "mbedtls/mbedtls_port/timing_alt.c",
- ]
- dtls_def = [
- "WITH_DTLS",
- "MBEDTLS_AES_ROM_TABLES",
- "MBEDTLS_CONFIG_FILE=\"los_mbedtls_config_dtls.h\"",
- "CONFIG_DTLS_MBEDTLS_CERT",
- "CONFIG_DTLS_MBEDTLS_PSK",
- "CFG_MBEDTLS_MODE=PSK_CERT",
- ]
- dtls_cflags = [
- "-Wno-sign-compare",
- "-Wno-unused-parameter",
- ]
- static_library("dtls") {
- cflags = dtls_cflags
- defines = dtls_def
- sources = dtls_src
- include_dirs = dtls_inc
- }
|