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

Side by Side Diff: gyp/gpu.gyp

Issue 377993002: update our build system to support the experimental L-Release NDK (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixes Created 6 years, 5 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 | « no previous file | platform_tools/android/bin/android_setup.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP for building gpu 1 # GYP for building gpu
2 { 2 {
3 'target_defaults': { 3 'target_defaults': {
4 'conditions': [ 4 'conditions': [
5 ['skia_os != "win"', { 5 ['skia_os != "win"', {
6 'sources/': [ ['exclude', '_win.(h|cpp)$'], 6 'sources/': [ ['exclude', '_win.(h|cpp)$'],
7 ], 7 ],
8 }], 8 }],
9 ['skia_os != "mac"', { 9 ['skia_os != "mac"', {
10 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], 10 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 }, { # not skia_angle 208 }, { # not skia_angle
209 'sources!': [ 209 'sources!': [
210 '<@(skgpu_angle_gl_sources)', 210 '<@(skgpu_angle_gl_sources)',
211 ], 211 ],
212 }], 212 }],
213 [ 'skia_os == "android"', { 213 [ 'skia_os == "android"', {
214 'sources!': [ 214 'sources!': [
215 '../src/gpu/gl/GrGLDefaultInterface_none.cpp', 215 '../src/gpu/gl/GrGLDefaultInterface_none.cpp',
216 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp', 216 '../src/gpu/gl/GrGLCreateNativeInterface_none.cpp',
217 ], 217 ],
218 'defines': [
219 'GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE=1',
220 ],
218 'link_settings': { 221 'link_settings': {
219 'libraries': [ 222 'libraries': [
220 '-lGLESv2', 223 '-lGLESv2',
221 '-lEGL', 224 '-lEGL',
222 ], 225 ],
223 }, 226 },
224 }], 227 }],
225 ], 228 ],
226 }, 229 },
227 ], 230 ],
228 } 231 }
OLDNEW
« no previous file with comments | « no previous file | platform_tools/android/bin/android_setup.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698