blob: 82c1eb83e4d56573e00ab1618bc41fb97cef2794 [file] [log] [blame]
#!/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()