From 0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:47:29 +0200 Subject: Adding upstream version 115.8.0esr. Signed-off-by: Daniel Baumann --- third_party/libwebrtc/tools/grit/grit.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 third_party/libwebrtc/tools/grit/grit.py (limited to 'third_party/libwebrtc/tools/grit/grit.py') 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:])) -- cgit v1.2.3