record_wpr 472 B

12345678910111213141516
  1. #!/usr/bin/env vpython3
  2. # Copyright 2012 The Chromium Authors. All rights reserved.
  3. # Use of this source code is governed by a BSD-style license that can be
  4. # found in the LICENSE file.
  5. import sys
  6. from chrome_telemetry_build import chromium_config
  7. from core import path_util
  8. path_util.AddTelemetryToPath()
  9. from telemetry import record_wpr
  10. if __name__ == '__main__':
  11. config = chromium_config.GetDefaultChromiumConfig()
  12. sys.exit(record_wpr.Main(environment=config))