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

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

Issue 21096005: update gyp for ARM builds to be more well defined. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « platform_tools/android/bin/android_setup.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'CopySkiaAppDeps', 4 'target_name': 'CopySkiaAppDeps',
5 'type': 'none', 5 'type': 'none',
6 'dependencies': [ 6 'dependencies': [
7 'skia_lib.gyp:skia_lib', 7 'skia_lib.gyp:skia_lib',
8 'SampleApp.gyp:SampleApp', 8 'SampleApp.gyp:SampleApp',
9 'bench.gyp:bench', 9 'bench.gyp:bench',
10 'gm.gyp:gm', 10 'gm.gyp:gm',
11 'tests.gyp:tests', 11 'tests.gyp:tests',
12 'pathops_unittest.gyp:pathops_unittest', 12 'pathops_unittest.gyp:pathops_unittest',
13 'tools.gyp:bench_pictures', 13 'tools.gyp:bench_pictures',
14 'tools.gyp:render_pictures', 14 'tools.gyp:render_pictures',
15 'tools.gyp:render_pdfs', 15 'tools.gyp:render_pdfs',
16 'tools.gyp:skimage', 16 'tools.gyp:skimage',
17 ], 17 ],
18 'variables': { 18 'variables': {
19 'conditions': [ 19 'conditions': [
20 [ 'skia_arch_type == "x86"', { 20 [ 'skia_arch_type == "x86"', {
21 'android_arch%': "x86", 21 'android_arch%': "x86",
22 }, { 22 }, {
23 'conditions': [ 23 'conditions': [
24 [ 'armv7', { 24 [ 'arm_version == 7', {
25 'android_arch%': "armeabi-v7a", 25 'android_arch%': "armeabi-v7a",
26 }, { 26 }, {
27 'android_arch%': "armeabi", 27 'android_arch%': "armeabi",
28 }], 28 }],
29 ], 29 ],
30 }], 30 }],
31 ], 31 ],
32 }, 32 },
33 'copies': [ 33 'copies': [
34 # Copy gdbserver into the lib.target directory, so that it gets packaged 34 # Copy gdbserver into the lib.target directory, so that it gets packaged
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 '-Dnative.libs.absolute.dir=<(PRODUCT_DIR)/android/libs', 108 '-Dnative.libs.absolute.dir=<(PRODUCT_DIR)/android/libs',
109 '-Dout.final.file=<(PRODUCT_DIR)/android/bin/SkiaAndroid.apk', 109 '-Dout.final.file=<(PRODUCT_DIR)/android/bin/SkiaAndroid.apk',
110 '-Dsdk.dir=<(ANDROID_SDK_ROOT)', 110 '-Dsdk.dir=<(ANDROID_SDK_ROOT)',
111 'debug', 111 'debug',
112 ], 112 ],
113 }, 113 },
114 ], 114 ],
115 }, 115 },
116 ], 116 ],
117 } 117 }
OLDNEW
« no previous file with comments | « platform_tools/android/bin/android_setup.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698