| OLD | NEW |
| 1 # Getting Started | 1 # Deprecated Builds |
| 2 | 2 |
| 3 How to get and build the libyuv code. | 3 Older documentation on build configs which are no longer supported. |
| 4 | 4 |
| 5 ## Pre-requisites | 5 ## Pre-requisites |
| 6 | 6 |
| 7 You'll need to have depot tools installed: https://www.chromium.org/developers/h
ow-tos/install-depot-tools | 7 You'll need to have depot tools installed: https://www.chromium.org/developers/h
ow-tos/install-depot-tools |
| 8 Refer to chromium instructions for each platform for other prerequisites. | 8 Refer to chromium instructions for each platform for other prerequisites. |
| 9 | 9 |
| 10 ## Getting the Code | 10 ## Getting the Code |
| 11 | 11 |
| 12 Create a working directory, enter it, and run: | 12 Create a working directory, enter it, and run: |
| 13 | 13 |
| (...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 git checkout -b mycl -t origin/master | 431 git checkout -b mycl -t origin/master |
| 432 git pull | 432 git pull |
| 433 <edit files> | 433 <edit files> |
| 434 git add -u | 434 git add -u |
| 435 git commit -m "my change" | 435 git commit -m "my change" |
| 436 git cl lint | 436 git cl lint |
| 437 git cl try | 437 git cl try |
| 438 git cl upload -r a-reviewer@chomium.org -s | 438 git cl upload -r a-reviewer@chomium.org -s |
| 439 <once approved..> | 439 <once approved..> |
| 440 git cl land | 440 git cl land |
| OLD | NEW |