Chromium Code Reviews| 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 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1222 ], | 1222 ], |
| 1223 goma=True, | 1223 goma=True, |
| 1224 factory_properties={ | 1224 factory_properties={ |
| 1225 'gclient_env': { | 1225 'gclient_env': { |
| 1226 'GYP_DEFINES': 'use_aura=1', | 1226 'GYP_DEFINES': 'use_aura=1', |
| 1227 }, | 1227 }, |
| 1228 }) | 1228 }) |
| 1229 | 1229 |
| 1230 b_linux_asan = { | 1230 b_linux_asan = { |
| 1231 'name': 'linux_asan', | 1231 'name': 'linux_asan', |
| 1232 'factory': m_chromium_linux.ChromiumASANFactory( | 1232 'factory': m_annotator.BaseFactory('chromium_asan'), |
|
Michael Achenbach
2014/08/09 07:57:35
Here should go the recipe name. Right now you use
cmumford
2014/08/13 17:17:07
So I'm confused by your comment because I wasn't u
| |
| 1233 slave_type='Trybot', | |
| 1234 options=[ | |
| 1235 '--build-tool=ninja', | |
| 1236 '--compiler=goma-clang', | |
| 1237 'accessibility_unittests', | |
| 1238 'base_unittests', | |
| 1239 'cacheinvalidation_unittests', | |
| 1240 'cast_unittests', | |
| 1241 'cc_unittests', | |
| 1242 'components_unittests', | |
| 1243 'content_unittests', | |
| 1244 'crypto_unittests', | |
| 1245 'device_unittests', | |
| 1246 'display_unittests', | |
| 1247 'gcm_unit_tests', | |
| 1248 'gfx_unittests', | |
| 1249 'google_apis_unittests', | |
| 1250 'gpu_unittests', | |
| 1251 'ipc_tests', | |
| 1252 'jingle_unittests', | |
| 1253 'media_unittests', | |
| 1254 'net_unittests', | |
| 1255 'ppapi_unittests', | |
| 1256 'printing_unittests', | |
| 1257 'remoting_unittests', | |
| 1258 'sandbox_linux_unittests', | |
| 1259 'sql_unittests', | |
| 1260 'sync_unit_tests', | |
| 1261 'ui_unittests', | |
| 1262 'unit_tests', | |
| 1263 'url_unittests', | |
| 1264 ], | |
| 1265 tests=[ | |
| 1266 'accessibility_unittests', | |
| 1267 'base_unittests', | |
| 1268 'cacheinvalidation_unittests', | |
| 1269 'cc_unittests', | |
| 1270 'components_unittests', | |
| 1271 'content_unittests', | |
| 1272 'crypto_unittests', | |
| 1273 'device_unittests', | |
| 1274 'display_unittests', | |
| 1275 'gcm_unit_tests', | |
| 1276 'gfx_unittests', | |
| 1277 'google_apis_unittests', | |
| 1278 'gpu', | |
| 1279 'ipc_tests', | |
| 1280 'jingle', | |
| 1281 'media', | |
| 1282 'net', | |
| 1283 'ppapi_unittests', | |
| 1284 'printing', | |
| 1285 'remoting', | |
| 1286 'sandbox_linux_unittests', | |
| 1287 'sql_unittests', | |
| 1288 'sync_unit_tests', | |
| 1289 'ui_unittests', | |
| 1290 'unit_tests', | |
| 1291 'url_unittests', | |
| 1292 ], | |
| 1293 factory_properties={ | |
| 1294 'asan': True, # Used by runtest.py. | |
| 1295 'cluster_size': 1, | |
| 1296 'gclient_env': { | |
| 1297 'GYP_GENERATORS': 'ninja', | |
| 1298 'GYP_DEFINES': 'asan=1 lsan=1 use_allocator=none fastbuild=0', | |
| 1299 }, | |
| 1300 'lsan': True, | |
| 1301 'sharded_tests': sharded_tests, | |
|
cmumford
2014/08/08 21:12:47
Note: I can't see a place to put these values in t
Michael Achenbach
2014/08/09 07:57:35
asan and lsan are now defined through gyp. The clu
| |
| 1302 }), | |
| 1303 } | 1233 } |
| 1304 | 1234 |
| 1305 b_linux_browser_asan = { | 1235 b_linux_browser_asan = { |
| 1306 'name': 'linux_browser_asan', | 1236 'name': 'linux_browser_asan', |
| 1307 'factory': m_chromium_linux.ChromiumASANFactory( | 1237 'factory': m_chromium_linux.ChromiumASANFactory( |
| 1308 slave_type='Trybot', | 1238 slave_type='Trybot', |
| 1309 options=[ | 1239 options=[ |
| 1310 '--build-tool=ninja', | 1240 '--build-tool=ninja', |
| 1311 '--compiler=goma-clang', | 1241 '--compiler=goma-clang', |
| 1312 'browser_tests', | 1242 'browser_tests', |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1812 # base.make_stop_form = hack_stop(base.make_stop_form) | 1742 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 1813 | 1743 |
| 1814 | 1744 |
| 1815 ####### PROJECT IDENTITY | 1745 ####### PROJECT IDENTITY |
| 1816 | 1746 |
| 1817 # The 'projectURL' string will be used to provide a link | 1747 # The 'projectURL' string will be used to provide a link |
| 1818 # from buildbot HTML pages to your project's home page. | 1748 # from buildbot HTML pages to your project's home page. |
| 1819 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1749 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 1820 | 1750 |
| 1821 # vi: set ts=4 sts=2 sw=2 et: | 1751 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |