summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rwxr-xr-xutils/ipc/parser.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/utils/ipc/parser.py b/utils/ipc/parser.py
new file mode 100755
index 00000000..f46820fa
--- /dev/null
+++ b/utils/ipc/parser.py
@@ -0,0 +1,20 @@
+#!/usr/bin/env python3
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright (C) 2020, Google Inc.
+#
+# Author: Paul Elder <paul.elder@ideasonboard.com>
+#
+# parser.py - Run mojo parser with python3
+
+import os
+import sys
+
+# TODO set sys.pycache_prefix for >= python3.8
+sys.dont_write_bytecode = True
+
+# Make sure that mojom_parser.py can import mojom
+sys.path.append(f'{os.path.dirname(__file__)}/mojo/public/tools/mojom')
+
+import mojo.public.tools.mojom.mojom_parser as parser
+
+parser.Run(sys.argv[1:])