summaryrefslogtreecommitdiffstats
path: root/build/clang-plugin/ThirdPartyPaths.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /build/clang-plugin/ThirdPartyPaths.py
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-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))
+ )