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

Side by Side Diff: gyp/gpu.gyp

Issue 792923002: Apply the layer's image filter to the hoisted image (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix cast Created 6 years 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 | gyp/gpu.gypi » ('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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'etc1.gyp:libetc1', 89 'etc1.gyp:libetc1',
90 'ktx.gyp:libSkKTX', 90 'ktx.gyp:libSkKTX',
91 ], 91 ],
92 'includes': [ 92 'includes': [
93 'gpu.gypi', 93 'gpu.gypi',
94 ], 94 ],
95 'include_dirs': [ 95 'include_dirs': [
96 '../include/gpu', 96 '../include/gpu',
97 '../src/core', 97 '../src/core',
98 '../src/gpu', 98 '../src/gpu',
99 '../src/image/',
99 ], 100 ],
100 'sources': [ 101 'sources': [
101 '<@(skgpu_sources)', 102 '<@(skgpu_sources)',
102 '<@(skgpu_native_gl_sources)', 103 '<@(skgpu_native_gl_sources)',
103 '<@(skgpu_angle_gl_sources)', 104 '<@(skgpu_angle_gl_sources)',
104 '<@(skgpu_mesa_gl_sources)', 105 '<@(skgpu_mesa_gl_sources)',
105 '<@(skgpu_debug_gl_sources)', 106 '<@(skgpu_debug_gl_sources)',
106 '<@(skgpu_null_gl_sources)', 107 '<@(skgpu_null_gl_sources)',
107 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld). 108 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld).
108 ], 109 ],
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 'libraries': [ 242 'libraries': [
242 '-lGLESv2', 243 '-lGLESv2',
243 '-lEGL', 244 '-lEGL',
244 ], 245 ],
245 }, 246 },
246 }], 247 }],
247 ], 248 ],
248 }, 249 },
249 ], 250 ],
250 } 251 }
OLDNEW
« no previous file with comments | « no previous file | gyp/gpu.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698