diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /third_party/libwebrtc/tools/grit/grit.py | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/tools/grit/grit.py')
-rw-r--r-- | third_party/libwebrtc/tools/grit/grit.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/third_party/libwebrtc/tools/grit/grit.py b/third_party/libwebrtc/tools/grit/grit.py new file mode 100644 index 0000000000..abd1ab6449 --- /dev/null +++ b/third_party/libwebrtc/tools/grit/grit.py @@ -0,0 +1,31 @@ +#!/usr/bin/env python +# Copyright (c) 2012 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. + +'''Bootstrapping for GRIT. +''' + +from __future__ import print_function + +import os +import sys + +import grit.grit_runner + +sys.path.append( + os.path.join( + os.path.dirname(os.path.dirname(os.path.abspath(__file__))), + 'diagnosis')) +try: + import crbug_1001171 +except ImportError: + crbug_1001171 = None + + +if __name__ == '__main__': + if crbug_1001171: + with crbug_1001171.DumpStateOnLookupError(): + sys.exit(grit.grit_runner.Main(sys.argv[1:])) + else: + sys.exit(grit.grit_runner.Main(sys.argv[1:])) |