summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/tools/grit/grit.py
blob: abd1ab6449cbc9cdf3ae73092acb793325f300c3 (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
#!/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:]))