| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 1258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1269 # Reuse the directory. | 1269 # Reuse the directory. |
| 1270 'slavebuilddir': 'linux_valgrind', | 1270 'slavebuilddir': 'linux_valgrind', |
| 1271 'factory': m_chromium_linux.ChromiumFactory( | 1271 'factory': m_chromium_linux.ChromiumFactory( |
| 1272 slave_type='Trybot', | 1272 slave_type='Trybot', |
| 1273 target='Release', | 1273 target='Release', |
| 1274 options=[ | 1274 options=[ |
| 1275 '--compiler=goma', | 1275 '--compiler=goma', |
| 1276 'accessibility_unittests', | 1276 'accessibility_unittests', |
| 1277 'base_unittests', | 1277 'base_unittests', |
| 1278 'cast_unittests', | 1278 'cast_unittests', |
| 1279 'components_unittests', | |
| 1280 'content_unittests', | 1279 'content_unittests', |
| 1281 'crypto_unittests', | 1280 'crypto_unittests', |
| 1282 'device_unittests', | 1281 'device_unittests', |
| 1283 'gcm_unit_tests', | 1282 'gcm_unit_tests', |
| 1284 'gfx_unittests', | 1283 'gfx_unittests', |
| 1285 'google_apis_unittests', | 1284 'google_apis_unittests', |
| 1286 'ipc_tests', | 1285 'ipc_tests', |
| 1287 'media_unittests', | 1286 'media_unittests', |
| 1288 'net_unittests', | 1287 'net_unittests', |
| 1289 'ppapi_unittests', | 1288 'ppapi_unittests', |
| (...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2353 # base.make_stop_form = hack_stop(base.make_stop_form) | 2352 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 2354 | 2353 |
| 2355 | 2354 |
| 2356 ####### PROJECT IDENTITY | 2355 ####### PROJECT IDENTITY |
| 2357 | 2356 |
| 2358 # The 'projectURL' string will be used to provide a link | 2357 # The 'projectURL' string will be used to provide a link |
| 2359 # from buildbot HTML pages to your project's home page. | 2358 # from buildbot HTML pages to your project's home page. |
| 2360 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2359 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 2361 | 2360 |
| 2362 # vi: set ts=4 sts=2 sw=2 et: | 2361 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |