| OLD | NEW |
| 1 # Updating Chromium's about:tracing (rolling DEPS) | 1 # Updating Chromium's about:tracing (rolling DEPS) |
| 2 | 2 |
| 3 Chromium's DEPS file needs to be rolled to the catapult revision containing your | 3 Chromium's DEPS file needs to be rolled to the catapult revision containing your |
| 4 change in order for it to appear in Chrome's about:tracing or other | 4 change in order for it to appear in Chrome's about:tracing or other |
| 5 third_party/catapult files. This should happen automatically, but you may need | 5 third_party/catapult files. This should happen automatically, but you may need |
| 6 to do it manually in rare cases. See below for more details. | 6 to do it manually in rare cases. See below for more details. |
| 7 | 7 |
| 8 ## Automatic rolls | 8 ## Automatic rolls |
| 9 | 9 |
| 10 DEPS should be automatically rolled by the auto-roll bot at | 10 DEPS should be automatically rolled by the auto-roll bot at |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 ``` | 34 ``` |
| 35 'src/third_party/catapult': | 35 'src/third_party/catapult': |
| 36 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + | 36 Var('chromium_git') + '/external/github.com/catapult-project/catapult.git' +
'@' + |
| 37 '2da8924915bd6fb7609c518f5b1f63cb606248eb', | 37 '2da8924915bd6fb7609c518f5b1f63cb606248eb', |
| 38 ``` | 38 ``` |
| 39 | 39 |
| 40 Update the number to the git hash you want to roll to, and [contribute a | 40 Update the number to the git hash you want to roll to, and [contribute a |
| 41 codereview to chrome](http://www.chromium.org/developers/contributing-code) | 41 codereview to chrome](http://www.chromium.org/developers/contributing-code) |
| 42 for your edit. If you are a Chromium committer, feel free to TBR this. | 42 for your edit. If you are a Chromium committer, feel free to TBR this. |
| 43 |
| 44 Please also test the change on android\_optional\_gpu\_tests\_rel trybot. |
| 45 This can be accomplished by adding |
| 46 CQ\_INCLUDE\_TRYBOTS=master.tryserver.chromium.android:android\_optional\_gpu\_t
ests\_rel |
| 47 to the commit message. |
| OLD | NEW |