| OLD | NEW |
| 1 # Checking out and building Chromium for Mac | 1 # Checking out and building Chromium for Mac |
| 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 | 10 |
| 11 [TOC] | 11 [TOC] |
| 12 | 12 |
| 13 ## System requirements | 13 ## System requirements |
| 14 | 14 |
| 15 * A 64-bit Mac running 10.9+. | 15 * A 64-bit Mac running 10.11+. |
| 16 * [Xcode](https://developer.apple.com/xcode) 7.3+. | 16 * [Xcode](https://developer.apple.com/xcode) 7.3+. |
| 17 * The OS X 10.10 SDK. Run | 17 * The OS X 10.10 SDK. Run |
| 18 | 18 |
| 19 ```shell | 19 ```shell |
| 20 $ ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs | 20 $ ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs |
| 21 ``` | 21 ``` |
| 22 | 22 |
| 23 to check whether you have it. Building with a newer SDK works too, but | 23 to check whether you have it. Building with a newer SDK works too, but |
| 24 the releases currently use the 10.10 SDK. | 24 the releases currently use the 10.10 SDK. |
| 25 | 25 |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 | 276 |
| 277 ```shell | 277 ```shell |
| 278 $ xcodebuild -license | 278 $ xcodebuild -license |
| 279 ``` | 279 ``` |
| 280 | 280 |
| 281 Only accepting for all users of the machine requires root: | 281 Only accepting for all users of the machine requires root: |
| 282 | 282 |
| 283 ```shell | 283 ```shell |
| 284 $ sudo xcodebuild -license | 284 $ sudo xcodebuild -license |
| 285 ``` | 285 ``` |
| OLD | NEW |