chromium/third_party/blink/tools/try_flag.py

#!/usr/bin/env vpython3
# Copyright 2017 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Triggers and processes results from flag try jobs.

For more information, see: http://bit.ly/flag-try-jobs
"""

import sys

from blinkpy.web_tests import try_flag

if __name__ == '__main__':
    sys.exit(try_flag.main())