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

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

Issue 2152663003: Refactor the buildbot module in webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py
index e6c06ed1b4e37386e98ffc74a404651f2c532f4e..7c9b19c5dedd6a8731287fd0f4f977b3a6098006 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/config/urls.py
@@ -26,20 +26,6 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-import re
-
-
+# FIXME: this could be moved over to perftestsrunner (the one place where it's used).
def view_source_url(local_path):
return "https://src.chromium.org/viewvc/blink/trunk/%s" % local_path
-
-
-def chromium_results_url_base():
- return 'https://storage.googleapis.com/chromium-layout-test-archives'
-
-
-def chromium_results_url_base_for_builder(builder_name):
- return '%s/%s' % (chromium_results_url_base(), re.sub('[ .()]', '_', builder_name))
-
-
-def chromium_accumulated_results_url_base_for_builder(builder_name):
- return chromium_results_url_base_for_builder(builder_name) + "/results/layout-test-results"
« 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