Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Side by Side Diff: tools/autoroller/roll_chromium_revision.py

Issue 2159873003: Remove stefan@webrtc.org from libvpx roll notification. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 # 3 #
4 # Use of this source code is governed by a BSD-style license 4 # Use of this source code is governed by a BSD-style license
5 # that can be found in the LICENSE file in the root of the source 5 # that can be found in the LICENSE file in the root of the source
6 # tree. An additional intellectual property rights grant can be found 6 # tree. An additional intellectual property rights grant can be found
7 # in the file PATENTS. All contributing project authors may 7 # in the file PATENTS. All contributing project authors may
8 # be found in the AUTHORS file in the root of the source tree. 8 # be found in the AUTHORS file in the root of the source tree.
9 9
10 """Script to roll chromium_revision in the WebRTC DEPS file.""" 10 """Script to roll chromium_revision in the WebRTC DEPS file."""
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 # are added. 267 # are added.
268 tbr_authors = '' 268 tbr_authors = ''
269 if changed_deps_list: 269 if changed_deps_list:
270 commit_msg.append('Changed dependencies:') 270 commit_msg.append('Changed dependencies:')
271 271
272 for c in changed_deps_list: 272 for c in changed_deps_list:
273 commit_msg.append('* %s: %s/+log/%s..%s' % (c.path, c.url, 273 commit_msg.append('* %s: %s/+log/%s..%s' % (c.path, c.url,
274 c.current_rev[0:10], 274 c.current_rev[0:10],
275 c.new_rev[0:10])) 275 c.new_rev[0:10]))
276 if 'libvpx' in c.path: 276 if 'libvpx' in c.path:
277 tbr_authors += 'marpan@webrtc.org, stefan@webrtc.org, ' 277 tbr_authors += 'marpan@webrtc.org, '
278 278
279 change_url = CHROMIUM_FILE_TEMPLATE % (rev_interval, 'DEPS') 279 change_url = CHROMIUM_FILE_TEMPLATE % (rev_interval, 'DEPS')
280 commit_msg.append('DEPS diff: %s\n' % change_url) 280 commit_msg.append('DEPS diff: %s\n' % change_url)
281 else: 281 else:
282 commit_msg.append('No dependencies changed.') 282 commit_msg.append('No dependencies changed.')
283 283
284 if clang_change.current_rev != clang_change.new_rev: 284 if clang_change.current_rev != clang_change.new_rev:
285 commit_msg.append('Clang version changed %s:%s' % 285 commit_msg.append('Clang version changed %s:%s' %
286 (clang_change.current_rev, clang_change.new_rev)) 286 (clang_change.current_rev, clang_change.new_rev))
287 change_url = CHROMIUM_FILE_TEMPLATE % (rev_interval, 287 change_url = CHROMIUM_FILE_TEMPLATE % (rev_interval,
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 _CreateRollBranch(opts.dry_run) 437 _CreateRollBranch(opts.dry_run)
438 UpdateDeps(deps_filename, current_cr_rev, new_cr_rev) 438 UpdateDeps(deps_filename, current_cr_rev, new_cr_rev)
439 _LocalCommit(commit_msg, opts.dry_run) 439 _LocalCommit(commit_msg, opts.dry_run)
440 _UploadCL(opts.dry_run, opts.rietveld_email) 440 _UploadCL(opts.dry_run, opts.rietveld_email)
441 _SendToCQ(opts.dry_run, opts.skip_cq) 441 _SendToCQ(opts.dry_run, opts.skip_cq)
442 return 0 442 return 0
443 443
444 444
445 if __name__ == '__main__': 445 if __name__ == '__main__':
446 sys.exit(main()) 446 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698