summaryrefslogtreecommitdiffstats
path: root/build/clang-plugin/ThirdPartyPaths.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /build/clang-plugin/ThirdPartyPaths.py
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/clang-plugin/ThirdPartyPaths.py')
-rw-r--r--build/clang-plugin/ThirdPartyPaths.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/build/clang-plugin/ThirdPartyPaths.py b/build/clang-plugin/ThirdPartyPaths.py
new file mode 100644
index 0000000000..caaa919d43
--- /dev/null
+++ b/build/clang-plugin/ThirdPartyPaths.py
@@ -0,0 +1,40 @@
+#!/usr/bin/env python3
+
+import json
+
+
+def generate(output, *input_paths):
+ """
+ This file generates a ThirdPartyPaths.cpp file from the ThirdPartyPaths.txt
+ file in /tools/rewriting, which is used by the Clang Plugin to help identify
+ sources which should be ignored.
+ """
+ tpp_list = []
+ lines = set()
+
+ for path in input_paths:
+ with open(path) as f:
+ lines.update(f.readlines())
+
+ for line in lines:
+ line = line.strip()
+ if line.endswith("/"):
+ line = line[:-1]
+ tpp_list.append(line)
+ tpp_strings = ",\n ".join([json.dumps(tpp) for tpp in sorted(tpp_list)])
+
+ output.write(
+ """\
+/* THIS FILE IS GENERATED BY ThirdPartyPaths.py - DO NOT EDIT */
+
+#include <stdint.h>
+
+const char* MOZ_THIRD_PARTY_PATHS[] = {
+ %s
+};
+
+extern const uint32_t MOZ_THIRD_PARTY_PATHS_COUNT = %d;
+
+"""
+ % (tpp_strings, len(tpp_list))
+ )