| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 'android_apk_suffix': "debug.apk", | 42 'android_apk_suffix': "debug.apk", |
| 43 }, { | 43 }, { |
| 44 # This also accounts for Release_Developer BUILDTYPE | 44 # This also accounts for Release_Developer BUILDTYPE |
| 45 'android_buildtype': "Release", | 45 'android_buildtype': "Release", |
| 46 'android_apk_suffix': "release.apk", | 46 'android_apk_suffix': "release.apk", |
| 47 }], | 47 }], |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 'includes' : [ | 50 'includes' : [ |
| 51 'canvasproof.gypi', | 51 'canvasproof.gypi', |
| 52 'vulkanviewer.gypi', | 52 'viewer.gypi', |
| 53 ], | 53 ], |
| 54 'targets': [ | 54 'targets': [ |
| 55 { | 55 { |
| 56 'target_name': 'CopySampleAppDeps', | 56 'target_name': 'CopySampleAppDeps', |
| 57 'type': 'none', | 57 'type': 'none', |
| 58 'dependencies': [ | 58 'dependencies': [ |
| 59 'skia_lib.gyp:skia_lib', | 59 'skia_lib.gyp:skia_lib', |
| 60 'SampleApp.gyp:SampleApp', | 60 'SampleApp.gyp:SampleApp', |
| 61 ], | 61 ], |
| 62 'copies': [ | 62 'copies': [ |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 '<(android_base)/apps/gradlew', | 276 '<(android_base)/apps/gradlew', |
| 277 ':visualbenchsdl:assemble<(android_variant)<(android_buildtype)', | 277 ':visualbenchsdl:assemble<(android_variant)<(android_buildtype)', |
| 278 '-p<(android_base)/apps/visualbenchsdl', | 278 '-p<(android_base)/apps/visualbenchsdl', |
| 279 '-PsuppressNativeBuild', | 279 '-PsuppressNativeBuild', |
| 280 ], | 280 ], |
| 281 }, | 281 }, |
| 282 ], | 282 ], |
| 283 }, | 283 }, |
| 284 ], | 284 ], |
| 285 } | 285 } |
| OLD | NEW |