| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 | 6 |
| 7 import collections | 7 import collections |
| 8 import json | 8 import json |
| 9 | 9 |
| 10 | 10 |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 'vm693-m3': SlaveInfo('noserial', MACMINI_SDK_ROOT, False), | 90 'vm693-m3': SlaveInfo('noserial', MACMINI_SDK_ROOT, False), |
| 91 'skiabot-linux-swarm-000': SlaveInfo('noserial', DEFAULT_SDK_ROOT, True), | 91 'skiabot-linux-swarm-000': SlaveInfo('noserial', DEFAULT_SDK_ROOT, True), |
| 92 'default': | 92 'default': |
| 93 SlaveInfo('noserial', DEFAULT_SDK_ROOT, False), | 93 SlaveInfo('noserial', DEFAULT_SDK_ROOT, False), |
| 94 } | 94 } |
| 95 | 95 |
| 96 | 96 |
| 97 if __name__ == '__main__': | 97 if __name__ == '__main__': |
| 98 print json.dumps(SLAVE_INFO) # pragma: no cover | 98 print json.dumps(SLAVE_INFO) # pragma: no cover |
| 99 | 99 |
| OLD | NEW |