OLD | NEW |
1 # Checking out and Building Chromium for Windows | 1 # Checking out and Building Chromium for Windows |
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 **See also [the old version of this page](old_linux_build_instructions.md).** | |
7 | |
8 ## Instructions for Google Employees | 6 ## Instructions for Google Employees |
9 | 7 |
10 Are you a Google employee? See | 8 Are you a Google employee? See |
11 [go/building-chrome](https://goto.google.com/building-chrome) instead. | 9 [go/building-chrome](https://goto.google.com/building-chrome) instead. |
12 | 10 |
13 [TOC] | 11 [TOC] |
14 | 12 |
15 ## System requirements | 13 ## System requirements |
16 | 14 |
17 * A 64-bit Intel machine with at least 8GB of RAM. More than 16GB is highly | 15 * A 64-bit Intel machine with at least 8GB of RAM. More than 16GB is highly |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 $ gclient sync | 227 $ gclient sync |
230 ``` | 228 ``` |
231 | 229 |
232 The first command updates the primary Chromium source repository and rebases | 230 The first command updates the primary Chromium source repository and rebases |
233 any of your local branches on top of tip-of-tree (aka the Git branch `origin/mas
ter`). | 231 any of your local branches on top of tip-of-tree (aka the Git branch `origin/mas
ter`). |
234 If you don't want to use this script, you can also just use `git pull` or | 232 If you don't want to use this script, you can also just use `git pull` or |
235 other common Git commands to update the repo. | 233 other common Git commands to update the repo. |
236 | 234 |
237 The second command syncs the subrepositories to the appropriate versions and | 235 The second command syncs the subrepositories to the appropriate versions and |
238 re-runs the hooks as needed. | 236 re-runs the hooks as needed. |
OLD | NEW |