| OLD | NEW |
| 1 # Building PDFium | 1 # Building PDFium |
| 2 | 2 |
| 3 ## Prerequisites | 3 ## Prerequisites |
| 4 | 4 |
| 5 Get the chromium depot tools via the instructions at | 5 Get the chromium depot tools via the instructions at |
| 6 http://www.chromium.org/developers/how-tos/install-depot-tools (this provides | 6 http://www.chromium.org/developers/how-tos/install-depot-tools (this provides |
| 7 the gclient utilty needed below). | 7 the gclient utilty needed below). |
| 8 | 8 |
| 9 Also install Python, Subversion, and Git and make sure they're in your path. | 9 Also install Python, Subversion, and Git and make sure they're in your path. |
| 10 | 10 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 ## Branches | 73 ## Branches |
| 74 | 74 |
| 75 There is a branch for a forthcoming feature called XFA that you can get by | 75 There is a branch for a forthcoming feature called XFA that you can get by |
| 76 following the steps above, then: `git checkout origin/xfa build/gyp_pdfium ninja | 76 following the steps above, then: `git checkout origin/xfa build/gyp_pdfium ninja |
| 77 -C out/Debug | 77 -C out/Debug |
| 78 ` | 78 ` |
| 79 | 79 |
| 80 The XFA version of the sample pdfium\_test program supports rasterizing to .png | 80 The XFA version of the sample pdfium\_test program supports rasterizing to .png |
| 81 format files. For example: `out/Debug/pdfium_test --png path/to/myfile.pdf | 81 format files. For example: `out/Debug/pdfium_test --png path/to/myfile.pdf |
| 82 ` | 82 ` |
| OLD | NEW |