| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # This GYP file stores the dependencies necessary to build Skia on the Android | 6 # This GYP file stores the dependencies necessary to build Skia on the Android |
| 7 # platform. The OS doesn't provide many stable libraries as part of the | 7 # platform. The OS doesn't provide many stable libraries as part of the |
| 8 # distribution so we have to build a few of them ourselves. | 8 # distribution so we have to build a few of them ourselves. |
| 9 # | 9 # |
| 10 { | 10 { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 'android_arch%': "mips64", | 38 'android_arch%': "mips64", |
| 39 'android_variant%': "mips64", | 39 'android_variant%': "mips64", |
| 40 }], | 40 }], |
| 41 [ 'android_buildtype == "Release"', { | 41 [ 'android_buildtype == "Release"', { |
| 42 'android_apk_suffix': "release.apk", | 42 'android_apk_suffix': "release.apk", |
| 43 }, { | 43 }, { |
| 44 'android_apk_suffix': "debug.apk", | 44 'android_apk_suffix': "debug.apk", |
| 45 }], | 45 }], |
| 46 ], | 46 ], |
| 47 }, | 47 }, |
| 48 'includes' : [ 'canvasproof.gypi', ], |
| 48 'targets': [ | 49 'targets': [ |
| 49 { | 50 { |
| 50 'target_name': 'CopySampleAppDeps', | 51 'target_name': 'CopySampleAppDeps', |
| 51 'type': 'none', | 52 'type': 'none', |
| 52 'dependencies': [ | 53 'dependencies': [ |
| 53 'skia_lib.gyp:skia_lib', | 54 'skia_lib.gyp:skia_lib', |
| 54 'SampleApp.gyp:SampleApp', | 55 'SampleApp.gyp:SampleApp', |
| 55 ], | 56 ], |
| 56 'copies': [ | 57 'copies': [ |
| 57 # Copy all shared libraries into the Android app's libs folder. Note | 58 # Copy all shared libraries into the Android app's libs folder. Note |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 '<(android_base)/apps/gradlew', | 205 '<(android_base)/apps/gradlew', |
| 205 ':visualbench:assemble<(android_variant)DebugAndroidTest', | 206 ':visualbench:assemble<(android_variant)DebugAndroidTest', |
| 206 '-p<(android_base)/apps/visualbench', | 207 '-p<(android_base)/apps/visualbench', |
| 207 '-PsuppressNativeBuild', | 208 '-PsuppressNativeBuild', |
| 208 ], | 209 ], |
| 209 }, | 210 }, |
| 210 ], | 211 ], |
| 211 }, | 212 }, |
| 212 ], | 213 ], |
| 213 } | 214 } |
| OLD | NEW |