33 lines
838 B
Python
Executable file
33 lines
838 B
Python
Executable file
#!/usr/bin/python
|
|
# Copyright 2015 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.
|
|
|
|
import argparse
|
|
import os
|
|
import sys
|
|
|
|
|
|
def _AddToPathIfNeeded(path):
|
|
if path not in sys.path:
|
|
sys.path.insert(0, path)
|
|
|
|
|
|
def Main():
|
|
catapult_path = os.path.abspath(os.path.join(
|
|
os.path.dirname(__file__), '..', '..'))
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--appid', default='chromeperf')
|
|
args = parser.parse_args()
|
|
|
|
_AddToPathIfNeeded(os.path.join(catapult_path, 'dashboard'))
|
|
import dashboard
|
|
paths = dashboard.PathsForDeployment()
|
|
|
|
_AddToPathIfNeeded(catapult_path)
|
|
from catapult_build import appengine_deploy
|
|
appengine_deploy.AppcfgUpdate(paths, app_id=args.appid)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
Main()
|