| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'linux', | 45 'linux', |
| 46 'linux_asan', | 46 'linux_asan', |
| 47 'linux_chromeos', | 47 'linux_chromeos', |
| 48 'linux_chromeos_asan', | 48 'linux_chromeos_asan', |
| 49 'linux_chromium_gn_dbg', | 49 'linux_chromium_gn_dbg', |
| 50 'linux_gpu', | 50 'linux_gpu', |
| 51 'linux_layout', | 51 'linux_layout', |
| 52 'linux_layout_rel', | 52 'linux_layout_rel', |
| 53 'mac', | 53 'mac', |
| 54 'mac_asan', | 54 'mac_asan', |
| 55 'mac_gpu', | |
| 56 'mac_layout', | 55 'mac_layout', |
| 57 'mac_layout_rel', | 56 'mac_layout_rel', |
| 58 'win', | 57 'win', |
| 59 'win_gpu', | 58 'win_gpu', |
| 60 'win_layout', | 59 'win_layout', |
| 61 'win_layout_rel', | 60 'win_layout_rel', |
| 62 ] | 61 ] |
| 63 | 62 |
| 64 REGEXP_SKIA_REVISION = ( | 63 REGEXP_SKIA_REVISION = ( |
| 65 r'^ "skia_revision": "(?P<revision>[0-9a-fA-F]{2,40})",$') | 64 r'^ "skia_revision": "(?P<revision>[0-9a-fA-F]{2,40})",$') |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 | 288 |
| 290 if deps_issue and whitespace_issue: | 289 if deps_issue and whitespace_issue: |
| 291 print 'DEPS roll:\n %s\n' % deps_issue | 290 print 'DEPS roll:\n %s\n' % deps_issue |
| 292 print 'Whitespace change:\n %s\n' % whitespace_issue | 291 print 'Whitespace change:\n %s\n' % whitespace_issue |
| 293 else: | 292 else: |
| 294 print >> sys.stderr, 'No issues created.' | 293 print >> sys.stderr, 'No issues created.' |
| 295 | 294 |
| 296 | 295 |
| 297 if __name__ == '__main__': | 296 if __name__ == '__main__': |
| 298 main(sys.argv[1:]) | 297 main(sys.argv[1:]) |
| OLD | NEW |