| OLD | NEW |
| 1 # Building Chromium on Debian | 1 # Building Chromium on Debian |
| 2 | 2 |
| 3 Generally speaking, follow the [Linux Build Instructions](linux_build_instructio
ns.md). | 3 Generally speaking, follow the [Linux Build Instructions](linux_build_instructio
ns.md). |
| 4 However, you may need to update the package names in `install-build-deps.sh`: | 4 However, you may need to update the package names in `install-build-deps.sh`: |
| 5 | 5 |
| 6 * libexpat-dev -> libexpat1-dev | 6 * `libexpat-dev` → `libexpat1-dev` |
| 7 * freetype-dev -> libfreetype6-dev | 7 * `freetype-dev` → `libfreetype6-dev` |
| 8 * libbzip2-dev -> libbz2-dev | 8 * `libbzip2-dev` → `libbz2-dev` |
| 9 * libcupsys2-dev -> libcups2-dev | 9 * `libcupsys2-dev` → `libcups2-dev` |
| 10 | 10 |
| 11 Additionally, if you're building Chromium components for Android, you'll need to | 11 Additionally, if you're building Chromium components for Android, you'll need to |
| 12 install the package: lib32z1 | 12 install the package `lib32z1`. |
| OLD | NEW |