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

Side by Side Diff: gyp/gpu.gyp

Issue 771353005: Fix include for GrPortderDuffXferProcessor.cpp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | src/gpu/effects/GrPorterDuffXferProcessor.cpp » ('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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'direct_dependent_settings': { 67 'direct_dependent_settings': {
68 'conditions': [ 68 'conditions': [
69 [ 'skia_os == "win"', { 69 [ 'skia_os == "win"', {
70 'defines': [ 70 'defines': [
71 'GR_GL_FUNCTION_TYPE=__stdcall', 71 'GR_GL_FUNCTION_TYPE=__stdcall',
72 ], 72 ],
73 }], 73 }],
74 ], 74 ],
75 'include_dirs': [ 75 'include_dirs': [
76 '../include/gpu', 76 '../include/gpu',
77 '../include/gpu/effects',
78 ], 77 ],
79 }, 78 },
80 }, 79 },
81 'targets': [ 80 'targets': [
82 { 81 {
83 'target_name': 'skgpu', 82 'target_name': 'skgpu',
84 'product_name': 'skia_skgpu', 83 'product_name': 'skia_skgpu',
85 'type': 'static_library', 84 'type': 'static_library',
86 'standalone_static_library': 1, 85 'standalone_static_library': 1,
87 'dependencies': [ 86 'dependencies': [
88 'core.gyp:*', 87 'core.gyp:*',
89 'utils.gyp:*', 88 'utils.gyp:*',
90 'etc1.gyp:libetc1', 89 'etc1.gyp:libetc1',
91 'ktx.gyp:libSkKTX', 90 'ktx.gyp:libSkKTX',
92 ], 91 ],
93 'includes': [ 92 'includes': [
94 'gpu.gypi', 93 'gpu.gypi',
95 ], 94 ],
96 'include_dirs': [ 95 'include_dirs': [
97 '../include/gpu', 96 '../include/gpu',
98 '../include/gpu/effects',
99 '../src/core', 97 '../src/core',
100 '../src/gpu', 98 '../src/gpu',
101 ], 99 ],
102 'sources': [ 100 'sources': [
103 '<@(skgpu_sources)', 101 '<@(skgpu_sources)',
104 '<@(skgpu_native_gl_sources)', 102 '<@(skgpu_native_gl_sources)',
105 '<@(skgpu_angle_gl_sources)', 103 '<@(skgpu_angle_gl_sources)',
106 '<@(skgpu_mesa_gl_sources)', 104 '<@(skgpu_mesa_gl_sources)',
107 '<@(skgpu_debug_gl_sources)', 105 '<@(skgpu_debug_gl_sources)',
108 '<@(skgpu_null_gl_sources)', 106 '<@(skgpu_null_gl_sources)',
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 'libraries': [ 241 'libraries': [
244 '-lGLESv2', 242 '-lGLESv2',
245 '-lEGL', 243 '-lEGL',
246 ], 244 ],
247 }, 245 },
248 }], 246 }],
249 ], 247 ],
250 }, 248 },
251 ], 249 ],
252 } 250 }
OLDNEW
« no previous file with comments | « no previous file | src/gpu/effects/GrPorterDuffXferProcessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698