summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/linux/strip_binary.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/build/linux/strip_binary.py')
-rwxr-xr-xthird_party/libwebrtc/build/linux/strip_binary.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/third_party/libwebrtc/build/linux/strip_binary.py b/third_party/libwebrtc/build/linux/strip_binary.py
new file mode 100755
index 0000000000..00b4089e76
--- /dev/null
+++ b/third_party/libwebrtc/build/linux/strip_binary.py
@@ -0,0 +1,32 @@
+#!/usr/bin/env python
+#
+# Copyright 2021 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import argparse
+import subprocess
+import sys
+
+
+def main():
+ argparser = argparse.ArgumentParser(description='eu-strip binary.')
+
+ argparser.add_argument('--eu-strip-binary-path', help='eu-strip path.')
+ argparser.add_argument('--binary-input', help='exe file path.')
+ argparser.add_argument('--symbol-output', help='debug file path.')
+ argparser.add_argument('--stripped-binary-output', help='stripped file path.')
+ args = argparser.parse_args()
+
+ cmd_line = [
+ args.eu_strip_binary_path, '-o', args.stripped_binary_output, '-f',
+ args.symbol_output, args.binary_input
+ ]
+
+ process = subprocess.Popen(cmd_line)
+
+ return process.returncode
+
+
+if __name__ == '__main__':
+ sys.exit(main())