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

Unified Diff: masters/master.chromium.webkit/master_linux_webkit_pinned_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_linux_webkit_pinned_cfg.py
diff --git a/masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py b/masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py
deleted file mode 100644
index 092ebb0447d7af5e4dac893b3d935eee1736ca4d..0000000000000000000000000000000000000000
--- a/masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py
+++ /dev/null
@@ -1,53 +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
-
-import master_site_config
-
-ActiveMaster = master_site_config.ChromiumWebkit
-
-defaults = {}
-
-helper = master_config.Helper(defaults)
-B = helper.Builder
-F = helper.Factory
-
-def linux():
- return chromium_factory.ChromiumFactory('src/out', 'linux2')
-
-defaults['category'] = 'deps'
-
-################################################################################
-## Release
-################################################################################
-
-#
-# Linux Rel Builder
-#
-B('WebKit Linux (deps)', 'f_webkit_linux_rel',
- scheduler='global_deps_scheduler')
-F('f_webkit_linux_rel', linux().ChromiumFactory(
- tests=chromium_factory.blink_tests,
- options=[
- '--build-tool=ninja',
- '--compiler=goma',
- '--',
- 'blink_tests',
- ],
- factory_properties={
- 'additional_expectations': [
- ['content', 'test', 'test_expectations.txt'],
- ],
- 'archive_webkit_results': ActiveMaster.is_production_host,
- 'gclient_env': {
- 'GYP_GENERATORS':'ninja',
- },
- 'generate_gtest_json': True,
- 'test_results_server': 'test-results.appspot.com',
- }))
-
-def Update(_config, _active_master, c):
- return helper.Update(c)

Powered by Google App Engine
This is Rietveld 408576698