| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 master.v8.v8_notifier import V8Notifier | 5 from master.v8.v8_notifier import V8Notifier |
| 6 | 6 |
| 7 | 7 |
| 8 V8_STEPS = [ | 8 V8_STEPS = [ |
| 9 'update', | 9 'update', |
| 10 'runhooks', | 10 'runhooks', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 ), | 49 ), |
| 50 V8Notifier( | 50 V8Notifier( |
| 51 config, | 51 config, |
| 52 active_master, | 52 active_master, |
| 53 categories_steps={'ppc': V8_STEPS}, | 53 categories_steps={'ppc': V8_STEPS}, |
| 54 extraRecipients=[ | 54 extraRecipients=[ |
| 55 'mbrandy@us.ibm.com', | 55 'mbrandy@us.ibm.com', |
| 56 'michael_dawson@ca.ibm.com', | 56 'michael_dawson@ca.ibm.com', |
| 57 ], | 57 ], |
| 58 ), | 58 ), |
| 59 V8Notifier( |
| 60 config, |
| 61 active_master, |
| 62 categories_steps={'s390': V8_STEPS}, |
| 63 extraRecipients=[ |
| 64 'joransiu@ca.ibm.com', |
| 65 'jyan@ca.ibm.com', |
| 66 'michael_dawson@ca.ibm.com', |
| 67 ], |
| 68 ), |
| 59 ]) | 69 ]) |
| 60 | 70 |
| OLD | NEW |