blob: 36d4aa32323c4d368c9e2cb1ed83f93b6d868d13 [file] [log] [blame]
Wenbin Zhangfa757b102022-04-28 15:52:391#!/usr/bin/env vpython3
Avi Drissmandfd880852022-09-15 20:11:092# Copyright 2012 The Chromium Authors
[email protected]42dd66bb2012-11-21 10:54:263# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
[email protected]42dd66bb2012-11-21 10:54:265import sys
6
nednguyena91919182016-01-13 18:31:537from chrome_telemetry_build import chromium_config
nednguyenf171cc52017-04-18 22:22:468from core import path_util
9path_util.AddTelemetryToPath()
[email protected]4d5f13bb2013-08-02 00:45:4410
nednguyen9afb1442015-05-15 17:37:5211from telemetry import record_wpr
[email protected]42dd66bb2012-11-21 10:54:2612
nednguyena91919182016-01-13 18:31:5313
[email protected]42dd66bb2012-11-21 10:54:2614if __name__ == '__main__':
Andrey Malets154e208f2021-08-05 21:09:5415 config = chromium_config.GetDefaultChromiumConfig()
nednguyenf171cc52017-04-18 22:22:4616 sys.exit(record_wpr.Main(environment=config))