summaryrefslogtreecommitdiff
path: root/utils/ipc/parser.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/ipc/parser.py')
-rwxr-xr-xutils/ipc/parser.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/utils/ipc/parser.py b/utils/ipc/parser.py
deleted file mode 100755
index cb5608b7..00000000
--- a/utils/ipc/parser.py
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env python3
-# SPDX-License-Identifier: BSD-3-Clause
-# Copyright (C) 2020, Google Inc.
-#
-# Author: Paul Elder <paul.elder@ideasonboard.com>
-#
-# 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.insert(0, f'{os.path.dirname(__file__)}/mojo/public/tools/mojom')
-
-import mojo.public.tools.mojom.mojom_parser as parser
-
-parser.Run(sys.argv[1:])