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 1415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 target='Release', | 1426 target='Release', |
1427 builder_name='win8_aura', | 1427 builder_name='win8_aura', |
1428 options=['aura_builder'], | 1428 options=['aura_builder'], |
1429 tests=[ | 1429 tests=[ |
1430 'ash_unittests_br', | 1430 'ash_unittests_br', |
1431 'aura_br', | 1431 'aura_br', |
1432 'buildrunner_tests', | 1432 'buildrunner_tests', |
1433 'compositor_br', | 1433 'compositor_br', |
1434 'events_br', | 1434 'events_br', |
1435 'views_br', | 1435 'views_br', |
| 1436 'wm_unittests_br', |
1436 ], | 1437 ], |
1437 goma=True, | 1438 goma=True, |
1438 factory_properties={ | 1439 factory_properties={ |
1439 'gclient_env': { | 1440 'gclient_env': { |
1440 'GYP_DEFINES': 'use_aura=1', | 1441 'GYP_DEFINES': 'use_aura=1', |
1441 }, | 1442 }, |
1442 }) | 1443 }) |
1443 | 1444 |
1444 b_linux_asan = { | 1445 b_linux_asan = { |
1445 'name': 'linux_asan', | 1446 'name': 'linux_asan', |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2167 # base.make_stop_form = hack_stop(base.make_stop_form) | 2168 # base.make_stop_form = hack_stop(base.make_stop_form) |
2168 | 2169 |
2169 | 2170 |
2170 ####### PROJECT IDENTITY | 2171 ####### PROJECT IDENTITY |
2171 | 2172 |
2172 # The 'projectURL' string will be used to provide a link | 2173 # The 'projectURL' string will be used to provide a link |
2173 # from buildbot HTML pages to your project's home page. | 2174 # from buildbot HTML pages to your project's home page. |
2174 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 2175 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
2175 | 2176 |
2176 # vi: set ts=4 sts=2 sw=2 et: | 2177 # vi: set ts=4 sts=2 sw=2 et: |
OLD | NEW |