blob: 5589d451b1bee2981d8a1f84066fad78ea386ebd [file] [log] [blame]
#!/usr/bin/env vpython
# Copyright 2017 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.
"""Perform type check for devtools frontend
This script wraps devtools-frontend/src/scripts/test/run_type_check.py
DevTools bot kicks this script.
"""
import os
import sys
sys.path.append(
os.path.join(
os.path.dirname(__file__), '..', '..', 'devtools-frontend', 'src',
'scripts', 'test'))
import run_type_check
if __name__ == '__main__':
sys.exit(run_type_check.main())