OLD | NEW |
1 # Mac Build Instructions | 1 # Mac Build Instructions |
2 | 2 |
3 [TOC] | 3 [TOC] |
4 | 4 |
| 5 Google employee? See [go/building-chrome-mac](https://goto.google.com/building-c
hrome-mac) for extra tips. |
| 6 |
5 ## Prerequisites | 7 ## Prerequisites |
6 | 8 |
7 * A Mac running 10.9+. | 9 * A Mac running 10.9+. |
8 * [Xcode](https://developer.apple.com/xcode) 7.3+. | 10 * [Xcode](https://developer.apple.com/xcode) 7.3+. |
9 * [depot\_tools](http://dev.chromium.org/developers/how-tos/depottools). | 11 * [depot\_tools](http://dev.chromium.org/developers/how-tos/depottools). |
10 * The OSX 10.10 SDK. Run | 12 * The OSX 10.10 SDK. Run |
11 ``` | 13 ``` |
12 ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs | 14 ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs |
13 ``` | 15 ``` |
14 to check whether you have it. Building with the 10.11 SDK works too, but | 16 to check whether you have it. Building with the 10.11 SDK works too, but |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 ``` | 197 ``` |
196 | 198 |
197 the Xcode license hasn't been accepted yet which (contrary to the message) any | 199 the Xcode license hasn't been accepted yet which (contrary to the message) any |
198 user can do by running: | 200 user can do by running: |
199 | 201 |
200 xcodebuild -license | 202 xcodebuild -license |
201 | 203 |
202 Only accepting for all users of the machine requires root: | 204 Only accepting for all users of the machine requires root: |
203 | 205 |
204 sudo xcodebuild -license | 206 sudo xcodebuild -license |
OLD | NEW |