| OLD | NEW |
| 1 Android | 1 Android |
| 2 ======= | 2 ======= |
| 3 | 3 |
| 4 Prerequisites | 4 Prerequisites |
| 5 ------------- | 5 ------------- |
| 6 | 6 |
| 7 _Currently we only support building Skia for Android on a Linux or Mac host!_ | 7 _Currently we only support building Skia for Android on a Linux or Mac host! In
addition, |
| 8 we only use the Mac build for local development. All shipping variants are comp
iled on |
| 9 Linux for performance reasons._ |
| 8 | 10 |
| 9 The following libraries/utilities are required in addition to those needed for a
standard skia checkout: | 11 The following libraries/utilities are required in addition to those needed for a
standard skia checkout: |
| 10 | 12 |
| 11 * Apache Ant | 13 * Apache Ant |
| 12 * The Android SDK: http://developer.android.com/sdk/ | 14 * The Android SDK: http://developer.android.com/sdk/ |
| 13 | 15 |
| 14 ~~~~ | 16 ~~~~ |
| 15 $ sudo apt-get install ant git | 17 $ sudo apt-get install ant git |
| 16 ~~~~ | 18 ~~~~ |
| 17 | 19 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 # include additional arguments in quotes (e.g. "dm --nopdf") | 179 # include additional arguments in quotes (e.g. "dm --nopdf") |
| 178 ./platform_tools/android/bin/android_gdb_native dm | 180 ./platform_tools/android/bin/android_gdb_native dm |
| 179 | 181 |
| 180 # SAMPLE APP | 182 # SAMPLE APP |
| 181 # make sure you've installed the app on the device first | 183 # make sure you've installed the app on the device first |
| 182 ./platform_tools/android/bin/android_gdb_app | 184 ./platform_tools/android/bin/android_gdb_app |
| 183 | 185 |
| 184 When the gdb client is ready, insert a breakpoint, and continue to let the | 186 When the gdb client is ready, insert a breakpoint, and continue to let the |
| 185 program resume execution. | 187 program resume execution. |
| 186 | 188 |
| OLD | NEW |