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

Side by Side Diff: gyp/gpu.gyp

Issue 986363002: Allow user to pass in a path for extra dependencies for gpu (Closed) Base URL: https://chromium.googlesource.com/skia@master
Patch Set: Created 5 years, 9 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 | « gyp/common_variables.gypi ('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 # 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'sources': [ 101 'sources': [
102 '<@(skgpu_sources)', 102 '<@(skgpu_sources)',
103 '<@(skgpu_native_gl_sources)', 103 '<@(skgpu_native_gl_sources)',
104 '<@(skgpu_angle_gl_sources)', 104 '<@(skgpu_angle_gl_sources)',
105 '<@(skgpu_mesa_gl_sources)', 105 '<@(skgpu_mesa_gl_sources)',
106 '<@(skgpu_debug_gl_sources)', 106 '<@(skgpu_debug_gl_sources)',
107 '<@(skgpu_null_gl_sources)', 107 '<@(skgpu_null_gl_sources)',
108 '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).
109 ], 109 ],
110 'conditions': [ 110 'conditions': [
111 [ 'skia_gpu_extra_dependency_path', {
112 'dependencies' : [
113 '<(skia_gpu_extra_dependency_path):*',
114 ]
115 }],
111 [ 'skia_stroke_path_rendering', { 116 [ 'skia_stroke_path_rendering', {
112 'sources': [ 117 'sources': [
113 '../experimental/StrokePathRenderer/GrStrokePathRenderer.h', 118 '../experimental/StrokePathRenderer/GrStrokePathRenderer.h',
114 '../experimental/StrokePathRenderer/GrStrokePathRenderer.cpp', 119 '../experimental/StrokePathRenderer/GrStrokePathRenderer.cpp',
115 ], 120 ],
116 'defines': [ 121 'defines': [
117 'GR_STROKE_PATH_RENDERING=1', 122 'GR_STROKE_PATH_RENDERING=1',
118 ], 123 ],
119 }], 124 }],
120 [ 'skia_android_path_rendering', { 125 [ 'skia_android_path_rendering', {
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 'libraries': [ 247 'libraries': [
243 '-lGLESv2', 248 '-lGLESv2',
244 '-lEGL', 249 '-lEGL',
245 ], 250 ],
246 }, 251 },
247 }], 252 }],
248 ], 253 ],
249 }, 254 },
250 ], 255 ],
251 } 256 }
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698