Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py

Issue 2112133002: Greatly simplify buildbot module and remove usage of master name. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010, Google Inc. All rights reserved. 1 # Copyright (c) 2010, Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 23 matching lines...) Expand all
34 34
35 35
36 def chromium_results_url_base(): 36 def chromium_results_url_base():
37 return 'https://storage.googleapis.com/chromium-layout-test-archives' 37 return 'https://storage.googleapis.com/chromium-layout-test-archives'
38 38
39 39
40 def chromium_results_url_base_for_builder(builder_name): 40 def chromium_results_url_base_for_builder(builder_name):
41 return '%s/%s' % (chromium_results_url_base(), re.sub('[ .()]', '_', builder _name)) 41 return '%s/%s' % (chromium_results_url_base(), re.sub('[ .()]', '_', builder _name))
42 42
43 43
44 def chromium_results_zip_url(builder_name):
45 return chromium_results_url_base_for_builder(builder_name) + '/results/layou t-test-results.zip'
46
47
48 def chromium_accumulated_results_url_base_for_builder(builder_name): 44 def chromium_accumulated_results_url_base_for_builder(builder_name):
49 return chromium_results_url_base_for_builder(builder_name) + "/results/layou t-test-results" 45 return chromium_results_url_base_for_builder(builder_name) + "/results/layou t-test-results"
50
51
52 def chromium_buildbot_url(master_name):
53 return "http://build.chromium.org/p/%s" % master_name
54
55
56 chromium_lkgr_url = "http://chromium-status.appspot.com/lkgr"
57 contribution_guidelines = "http://webkit.org/coding/contributing.html"
58 chromium_webkit_sheriff_url = "http://build.chromium.org/p/chromium.webkit/sheri ff_webkit.js"
59 omahaproxy_url = "http://omahaproxy.appspot.com/"
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/common/net/buildbot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698