Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from buildbot.changes import svnpoller | 5 from buildbot.changes import svnpoller |
| 6 from buildbot.scheduler import Dependent | 6 from buildbot.scheduler import Dependent |
| 7 from buildbot.scheduler import Scheduler | 7 from buildbot.scheduler import Scheduler |
| 8 | 8 |
| 9 from master import build_utils | 9 from master import build_utils |
| 10 from master import master_config | 10 from master import master_config |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 262 target='Release', | 262 target='Release', |
| 263 slave_type='BuilderTester', | 263 slave_type='BuilderTester', |
| 264 options=['chromium_gpu_builder'], | 264 options=['chromium_gpu_builder'], |
| 265 tests=full_test_suite, | 265 tests=full_test_suite, |
| 266 factory_properties={ | 266 factory_properties={ |
| 267 'test_results_server': 'test-results.appspot.com', | 267 'test_results_server': 'test-results.appspot.com', |
| 268 'perf_id': 'gpu-linux-release-nvidia', | 268 'perf_id': 'gpu-linux-release-nvidia', |
| 269 'show_perf_results': True, | 269 'show_perf_results': True, |
| 270 'generate_gtest_json': True, | 270 'generate_gtest_json': True, |
| 271 'gclient_env': { | 271 'gclient_env': { |
| 272 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1', | 272 # tcmalloc disabled because of hangs: http://crbug.com/177218 . |
| 273 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1 linux_use_tcm alloc=0', | |
|
cmp
2013/03/29 23:01:12
nit: 80 chars per line
Paweł Hajdan Jr.
2013/03/29 23:33:04
Done.
| |
| 273 }, | 274 }, |
| 274 }) | 275 }) |
| 275 | 276 |
| 276 f_linux_nvidia_dbg = F_LINUX( | 277 f_linux_nvidia_dbg = F_LINUX( |
| 277 target='Debug', | 278 target='Debug', |
| 278 slave_type='BuilderTester', | 279 slave_type='BuilderTester', |
| 279 options=['chromium_gpu_debug_builder'], | 280 options=['chromium_gpu_debug_builder'], |
| 280 tests=debug_test_suite, | 281 tests=debug_test_suite, |
| 281 factory_properties={ | 282 factory_properties={ |
| 282 'test_results_server': 'test-results.appspot.com', | 283 'test_results_server': 'test-results.appspot.com', |
| 283 'generate_gtest_json': True, | 284 'generate_gtest_json': True, |
| 284 'gclient_env': { | 285 'gclient_env': { |
| 285 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1', | 286 # tcmalloc disabled because of hangs: http://crbug.com/177218 . |
| 287 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1 linux_use_tcm alloc=0', | |
|
cmp
2013/03/29 23:01:12
nit: 80 chars per line
Paweł Hajdan Jr.
2013/03/29 23:33:04
Done.
| |
| 286 }, | 288 }, |
| 287 }) | 289 }) |
| 288 | 290 |
| 289 f_linux_ati_rel = F_LINUX( | 291 f_linux_ati_rel = F_LINUX( |
| 290 target='Release', | 292 target='Release', |
| 291 slave_type='BuilderTester', | 293 slave_type='BuilderTester', |
| 292 options=['chromium_gpu_builder'], | 294 options=['chromium_gpu_builder'], |
| 293 tests=full_test_suite, | 295 tests=full_test_suite, |
| 294 factory_properties={ | 296 factory_properties={ |
| 295 'perf_id': 'gpu-fyi-linux-release-ati', | 297 'perf_id': 'gpu-fyi-linux-release-ati', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 389 # Adds common status and tools to this master. | 391 # Adds common status and tools to this master. |
| 390 master_utils.AutoSetupMaster(c, ActiveMaster, | 392 master_utils.AutoSetupMaster(c, ActiveMaster, |
| 391 public_html='../master.chromium/public_html', | 393 public_html='../master.chromium/public_html', |
| 392 templates=['../master.chromium/templates'], | 394 templates=['../master.chromium/templates'], |
| 393 enable_http_status_push=ActiveMaster.is_production_host) | 395 enable_http_status_push=ActiveMaster.is_production_host) |
| 394 | 396 |
| 395 ####### PROJECT IDENTITY | 397 ####### PROJECT IDENTITY |
| 396 | 398 |
| 397 # Buildbot master url: | 399 # Buildbot master url: |
| 398 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.gpu/' | 400 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.gpu/' |
| OLD | NEW |