| 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 12 matching lines...) Expand all Loading... |
| 23 'android_variant%': "arm64", | 23 'android_variant%': "arm64", |
| 24 }], | 24 }], |
| 25 [ 'skia_arch_type == "x86"', { | 25 [ 'skia_arch_type == "x86"', { |
| 26 'android_arch%': "x86", | 26 'android_arch%': "x86", |
| 27 'android_variant%': "x86", | 27 'android_variant%': "x86", |
| 28 }], | 28 }], |
| 29 [ 'skia_arch_type == "x86_64"', { | 29 [ 'skia_arch_type == "x86_64"', { |
| 30 'android_arch%': "x86_64", | 30 'android_arch%': "x86_64", |
| 31 'android_variant%': "x86_64", | 31 'android_variant%': "x86_64", |
| 32 }], | 32 }], |
| 33 [ 'skia_arch_type == "mips" and skia_arch_width == 32', { | 33 [ 'skia_arch_type == "mips32"', { |
| 34 'android_arch%': "mips", | 34 'android_arch%': "mips", |
| 35 'android_variant%': "mips", | 35 'android_variant%': "mips", |
| 36 }], | 36 }], |
| 37 [ 'skia_arch_type == "mips" and skia_arch_width == 64', { | 37 [ 'skia_arch_type == "mips64"', { |
| 38 'android_arch%': "mips64", | 38 'android_arch%': "mips64", |
| 39 'android_variant%': "mips64", | 39 'android_variant%': "mips64", |
| 40 }], | 40 }], |
| 41 ], | 41 ], |
| 42 }, | 42 }, |
| 43 'targets': [ | 43 'targets': [ |
| 44 { | 44 { |
| 45 'target_name': 'CopySampleAppDeps', | 45 'target_name': 'CopySampleAppDeps', |
| 46 'type': 'none', | 46 'type': 'none', |
| 47 'dependencies': [ | 47 'dependencies': [ |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 '<(android_base)/apps/gradlew', | 149 '<(android_base)/apps/gradlew', |
| 150 ':visualbench:assemble<(android_variant)Debug', | 150 ':visualbench:assemble<(android_variant)Debug', |
| 151 '-p<(android_base)/apps/visualbench', | 151 '-p<(android_base)/apps/visualbench', |
| 152 '-PsuppressNativeBuild', | 152 '-PsuppressNativeBuild', |
| 153 ], | 153 ], |
| 154 }, | 154 }, |
| 155 ], | 155 ], |
| 156 }, | 156 }, |
| 157 ], | 157 ], |
| 158 } | 158 } |
| OLD | NEW |