Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(868)

Side by Side Diff: platform_tools/android/gyp/skia_android.gypi

Issue 1228553010: Remove skia_arch_width, fold into skia_arch_type. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « platform_tools/android/gyp/dependencies.gypi ('k') | site/user/quick/linux.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « platform_tools/android/gyp/dependencies.gypi ('k') | site/user/quick/linux.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698