| 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 | 5 |
| 6 from master import master_config | 6 from master import master_config |
| 7 from master.factory import chromium_factory | 7 from master.factory import chromium_factory |
| 8 | 8 |
| 9 defaults = {} | 9 defaults = {} |
| 10 | 10 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 # | 35 # |
| 36 T('android_dbg_trigger') | 36 T('android_dbg_trigger') |
| 37 | 37 |
| 38 android_dbg_archive = master_config.GetGSUtilUrl( | 38 android_dbg_archive = master_config.GetGSUtilUrl( |
| 39 'chromium-android', 'webkit_latest_dbg') | 39 'chromium-android', 'webkit_latest_dbg') |
| 40 | 40 |
| 41 # | 41 # |
| 42 # Android dbg builder | 42 # Android dbg builder |
| 43 # | 43 # |
| 44 B('Android Builder (dbg)', 'f_android_dbg', scheduler='s9_android_webkit') | 44 B('Android Builder (dbg)', 'f_android_dbg', scheduler='s9_android_webkit') |
| 45 F('f_android_dbg', linux_android().ChromiumWebkitLatestAnnotationFactory( | 45 F('f_android_dbg', linux_android().ChromiumAnnotationFactory( |
| 46 target='Debug', | 46 target='Debug', |
| 47 annotation_script='src/build/android/buildbot/bb_run_bot.py', | 47 annotation_script='src/build/android/buildbot/bb_run_bot.py', |
| 48 factory_properties={ | 48 factory_properties={ |
| 49 'android_bot_id': 'webkit-latest-builder-dbg', | 49 'android_bot_id': 'webkit-latest-builder-dbg', |
| 50 'build_url': android_dbg_archive, | 50 'build_url': android_dbg_archive, |
| 51 'trigger': 'android_dbg_trigger', | 51 'trigger': 'android_dbg_trigger', |
| 52 'prune_limit': 5, | 52 'prune_limit': 5, |
| 53 'blink_config': 'blink', |
| 53 })) | 54 })) |
| 54 | 55 |
| 55 B('Android Tests (dbg)', 'f_android_dbg_tests', None, 'android_dbg_trigger', | 56 B('Android Tests (dbg)', 'f_android_dbg_tests', None, 'android_dbg_trigger', |
| 56 auto_reboot=False) | 57 auto_reboot=False) |
| 57 F('f_android_dbg_tests', linux_android().ChromiumWebkitLatestAnnotationFactory( | 58 F('f_android_dbg_tests', linux_android().ChromiumAnnotationFactory( |
| 58 target='Debug', | 59 target='Debug', |
| 59 annotation_script='src/build/android/buildbot/bb_run_bot.py', | 60 annotation_script='src/build/android/buildbot/bb_run_bot.py', |
| 60 factory_properties={ | 61 factory_properties={ |
| 61 'android_bot_id': 'webkit-latest-tests-dbg', | 62 'android_bot_id': 'webkit-latest-tests-dbg', |
| 62 'build_url': android_dbg_archive, | 63 'build_url': android_dbg_archive, |
| 64 'blink_config': 'blink', |
| 63 })) | 65 })) |
| 64 | 66 |
| 65 def Update(config, active_master, c): | 67 def Update(config, active_master, c): |
| 66 return helper.Update(c) | 68 return helper.Update(c) |
| OLD | NEW |