summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/linux/strip_binary.py
blob: 00b4089e769fafeb42034d270ed93e540f00ef88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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())