| OLD | NEW |
| 1 #!/usr/bin/python2 | 1 #!/usr/bin/python2 |
| 2 | 2 |
| 3 # Copyright 2014 Google Inc. | 3 # Copyright 2014 Google Inc. |
| 4 # | 4 # |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 """Skia's Chromium DEPS roll script. | 8 """Skia's Chromium DEPS roll script. |
| 9 | 9 |
| 10 This script: | 10 This script: |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 DEFAULT_BOTS_LIST = [ | 39 DEFAULT_BOTS_LIST = [ |
| 40 'android_clang_dbg', | 40 'android_clang_dbg', |
| 41 'android_dbg', | 41 'android_dbg', |
| 42 'android_rel', | 42 'android_rel', |
| 43 'cros_daisy', | 43 'cros_daisy', |
| 44 'linux', | 44 'linux', |
| 45 'linux_asan', | 45 'linux_asan', |
| 46 'linux_chromeos', | 46 'linux_chromeos', |
| 47 'linux_chromeos_asan', | 47 'linux_chromeos_asan', |
| 48 'linux_chromium_gn_dbg', |
| 48 'linux_gpu', | 49 'linux_gpu', |
| 49 'linux_layout', | 50 'linux_layout', |
| 50 'linux_layout_rel', | 51 'linux_layout_rel', |
| 51 'mac', | 52 'mac', |
| 52 'mac_asan', | 53 'mac_asan', |
| 53 'mac_gpu', | 54 'mac_gpu', |
| 54 'mac_layout', | 55 'mac_layout', |
| 55 'mac_layout_rel', | 56 'mac_layout_rel', |
| 56 'win', | 57 'win', |
| 57 'win_gpu', | 58 'win_gpu', |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 if not git_utils.git_executable(): | 534 if not git_utils.git_executable(): |
| 534 option_parser.error('Invalid git executable.') | 535 option_parser.error('Invalid git executable.') |
| 535 | 536 |
| 536 config = DepsRollConfig(options) | 537 config = DepsRollConfig(options) |
| 537 find_hash_and_roll_deps(config, options.revision, options.git_hash) | 538 find_hash_and_roll_deps(config, options.revision, options.git_hash) |
| 538 | 539 |
| 539 | 540 |
| 540 if __name__ == '__main__': | 541 if __name__ == '__main__': |
| 541 main(sys.argv[1:]) | 542 main(sys.argv[1:]) |
| 542 | 543 |
| OLD | NEW |