OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2013 the V8 project authors. All rights reserved. | 2 # Copyright 2013 the V8 project authors. All rights reserved. |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following | 10 # copyright notice, this list of conditions and the following |
(...skipping 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@123456 123 | 1002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@123456 123 |
1003 | 1003 |
1004 """ | 1004 """ |
1005 | 1005 |
1006 ROLL_COMMIT_MSG = """Update V8 to version 3.22.4. | 1006 ROLL_COMMIT_MSG = """Update V8 to version 3.22.4. |
1007 | 1007 |
1008 Summary of changes available at: | 1008 Summary of changes available at: |
1009 https://chromium.googlesource.com/v8/v8/+log/last_rol..roll_hsh | 1009 https://chromium.googlesource.com/v8/v8/+log/last_rol..roll_hsh |
1010 | 1010 |
1011 Please follow these instructions for assigning/CC'ing issues: | 1011 Please follow these instructions for assigning/CC'ing issues: |
1012 https://code.google.com/p/v8-wiki/wiki/TriagingIssues | 1012 https://github.com/v8/v8/wiki/Triaging%20issues |
1013 | 1013 |
1014 Please close rolling in case of a roll revert: | 1014 Please close rolling in case of a roll revert: |
1015 https://v8-roll.appspot.com/ | 1015 https://v8-roll.appspot.com/ |
1016 This only works with a Google account. | 1016 This only works with a Google account. |
1017 | 1017 |
1018 TBR=reviewer@chromium.org""" | 1018 TBR=reviewer@chromium.org""" |
1019 | 1019 |
1020 # Snippet from the original DEPS file. | 1020 # Snippet from the original DEPS file. |
1021 FAKE_DEPS = """ | 1021 FAKE_DEPS = """ |
1022 vars = { | 1022 vars = { |
(...skipping 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1546 | 1546 |
1547 Review URL: https://codereview.chromium.org/83173002 | 1547 Review URL: https://codereview.chromium.org/83173002 |
1548 | 1548 |
1549 ------------------------------------------------------------------------""") | 1549 ------------------------------------------------------------------------""") |
1550 self.assertEquals( | 1550 self.assertEquals( |
1551 """Prepare push to trunk. Now working on version 3.23.11. | 1551 """Prepare push to trunk. Now working on version 3.23.11. |
1552 | 1552 |
1553 R=danno@chromium.org | 1553 R=danno@chromium.org |
1554 | 1554 |
1555 Committed: https://code.google.com/p/v8/source/detail?r=17997""", body) | 1555 Committed: https://code.google.com/p/v8/source/detail?r=17997""", body) |
OLD | NEW |