| OLD | NEW |
| 1 # Checking out and building Chromium for iOS | 1 # Checking out and building Chromium for iOS |
| 2 | 2 |
| 3 There are instructions for other platforms linked from the | 3 There are instructions for other platforms linked from the |
| 4 [get the code](get_the_code.md) page. | 4 [get the code](get_the_code.md) page. |
| 5 | 5 |
| 6 ## Instructions for Google Employees | 6 ## Instructions for Google Employees |
| 7 | 7 |
| 8 Are you a Google employee? See | 8 Are you a Google employee? See |
| 9 [go/building-chrome](https://goto.google.com/building-chrome) instead. | 9 [go/building-chrome](https://goto.google.com/building-chrome) instead. |
| 10 Google employee? See [go/building-chrome](https://goto.google.com/building-chrom
e) instead. | 10 Google employee? See [go/building-chrome](https://goto.google.com/building-chrom
e) instead. |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 `origin/master`). If you don't want to use this script, you can also just use | 135 `origin/master`). If you don't want to use this script, you can also just use |
| 136 `git pull` or other common Git commands to update the repo. | 136 `git pull` or other common Git commands to update the repo. |
| 137 | 137 |
| 138 The second command syncs dependencies to the appropriate versions and re-runs | 138 The second command syncs dependencies to the appropriate versions and re-runs |
| 139 hooks as needed. | 139 hooks as needed. |
| 140 | 140 |
| 141 ## Tips, tricks, and troubleshooting | 141 ## Tips, tricks, and troubleshooting |
| 142 | 142 |
| 143 If you have problems building, join us in `#chromium` on `irc.freenode.net` and | 143 If you have problems building, join us in `#chromium` on `irc.freenode.net` and |
| 144 ask there. As mentioned above, be sure that the | 144 ask there. As mentioned above, be sure that the |
| 145 [waterfall](http://build.chromium.org/buildbot/waterfall/) is green and the tree | 145 [waterfall](https://build.chromium.org/buildbot/waterfall/) is green and the tre
e |
| 146 is open before checking out. This will increase your chances of success. | 146 is open before checking out. This will increase your chances of success. |
| 147 | 147 |
| 148 ### Improving performance of `git status` | 148 ### Improving performance of `git status` |
| 149 | 149 |
| 150 `git status` is used frequently to determine the status of your checkout. Due | 150 `git status` is used frequently to determine the status of your checkout. Due |
| 151 to the large number of files in Chromium's checkout, `git status` performance | 151 to the large number of files in Chromium's checkout, `git status` performance |
| 152 can be quite variable. Increasing the system's vnode cache appears to help. | 152 can be quite variable. Increasing the system's vnode cache appears to help. |
| 153 By default, this command: | 153 By default, this command: |
| 154 | 154 |
| 155 ```shell | 155 ```shell |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 | 192 |
| 193 ```shell | 193 ```shell |
| 194 $ xcodebuild -license | 194 $ xcodebuild -license |
| 195 ``` | 195 ``` |
| 196 | 196 |
| 197 Only accepting for all users of the machine requires root: | 197 Only accepting for all users of the machine requires root: |
| 198 | 198 |
| 199 ```shell | 199 ```shell |
| 200 $ sudo xcodebuild -license | 200 $ sudo xcodebuild -license |
| 201 ``` | 201 ``` |
| OLD | NEW |