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

Unified Diff: masters/master.chromium.webkit/master_android_latest_cfg.py

Issue 1300623002: Remove redundant bots from chromium.webkit (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 4 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
Index: masters/master.chromium.webkit/master_android_latest_cfg.py
diff --git a/masters/master.chromium.webkit/master_android_latest_cfg.py b/masters/master.chromium.webkit/master_android_latest_cfg.py
deleted file mode 100644
index 28e3caddc16cf6c8cd12a80259559df99fc0eb87..0000000000000000000000000000000000000000
--- a/masters/master.chromium.webkit/master_android_latest_cfg.py
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright (c) 2012 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.
-
-
-from master import master_config
-from master.factory import chromium_factory
-
-defaults = {}
-
-helper = master_config.Helper(defaults)
-B = helper.Builder
-F = helper.Factory
-T = helper.Triggerable
-
-def linux_android():
- return chromium_factory.ChromiumFactory('',
- 'linux2', nohooks_on_update=True, target_os='android')
-
-
-################################################################################
-## Release
-################################################################################
-
-defaults['category'] = 'nonlayout'
-
-#
-# Triggerable scheduler for the builder
-#
-T('android_dbg_trigger')
-
-android_dbg_archive = master_config.GetGSUtilUrl(
- 'chromium-android', 'webkit_latest_dbg')
-
-#
-# Android dbg builder
-#
-B('Android Builder (dbg)', 'f_android_dbg', scheduler='global_scheduler')
-F('f_android_dbg', linux_android().ChromiumAnnotationFactory(
- target='Debug',
- annotation_script='src/build/android/buildbot/bb_run_bot.py',
- factory_properties={
- 'android_bot_id': 'webkit-latest-builder-dbg',
- 'build_url': android_dbg_archive,
- 'trigger': 'android_dbg_trigger',
- 'prune_limit': 5,
- 'blink_config': 'blink',
- }))
-
-B('Android Tests (dbg)', 'f_android_dbg_tests', None, 'android_dbg_trigger',
- auto_reboot=False)
-F('f_android_dbg_tests', linux_android().ChromiumAnnotationFactory(
- target='Debug',
- annotation_script='src/build/android/buildbot/bb_run_bot.py',
- factory_properties={
- 'android_bot_id': 'webkit-latest-tests-dbg',
- 'build_url': android_dbg_archive,
- 'blink_config': 'blink',
- }))
-
-def Update(_config, _active_master, c):
- return helper.Update(c)

Powered by Google App Engine
This is Rietveld 408576698