mirror of
https://github.com/Mbed-TLS/mbedtls-framework.git
synced 2026-09-10 12:19:55 +00:00
Remove psa include for Mbed TLS Code Parser
This commit removes unncessary TF-PSA-crypto includes for the Mbed TLS code parser class. Signed-off-by: Harry Ramsey <[email protected]>
This commit is contained in:
@@ -882,7 +882,6 @@ class MBEDTLSCodeParser(CodeParser):
|
|||||||
all_macros = {"public": [], "internal": [], "private":[]}
|
all_macros = {"public": [], "internal": [], "private":[]}
|
||||||
all_macros["public"] = self.parse_macros([
|
all_macros["public"] = self.parse_macros([
|
||||||
"include/mbedtls/*.h",
|
"include/mbedtls/*.h",
|
||||||
"include/psa/*.h",
|
|
||||||
])
|
])
|
||||||
all_macros["internal"] = self.parse_macros([
|
all_macros["internal"] = self.parse_macros([
|
||||||
"library/*.h",
|
"library/*.h",
|
||||||
@@ -893,18 +892,15 @@ class MBEDTLSCodeParser(CodeParser):
|
|||||||
])
|
])
|
||||||
enum_consts = self.parse_enum_consts([
|
enum_consts = self.parse_enum_consts([
|
||||||
"include/mbedtls/*.h",
|
"include/mbedtls/*.h",
|
||||||
"include/psa/*.h",
|
|
||||||
"library/*.h",
|
"library/*.h",
|
||||||
"library/*.c",
|
"library/*.c",
|
||||||
])
|
])
|
||||||
identifiers, excluded_identifiers = self.parse_identifiers([
|
identifiers, excluded_identifiers = self.parse_identifiers([
|
||||||
"include/mbedtls/*.h",
|
"include/mbedtls/*.h",
|
||||||
"include/psa/*.h",
|
|
||||||
"library/*.h",
|
"library/*.h",
|
||||||
])
|
])
|
||||||
mbed_psa_words = self.parse_mbed_psa_words([
|
mbed_psa_words = self.parse_mbed_psa_words([
|
||||||
"include/mbedtls/*.h",
|
"include/mbedtls/*.h",
|
||||||
"include/psa/*.h",
|
|
||||||
"library/*.h",
|
"library/*.h",
|
||||||
"library/*.c",
|
"library/*.c",
|
||||||
])
|
])
|
||||||
|
|||||||
Reference in New Issue
Block a user