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

Side by Side Diff: gyp/gpu.gyp

Issue 144003006: Turn NVPR on by default (but off in tools). (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: fix Created 6 years, 11 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
OLDNEW
1 { 1 {
2 'target_defaults': { 2 'target_defaults': {
3 'conditions': [ 3 'conditions': [
4 ['skia_os != "win"', { 4 ['skia_os != "win"', {
5 'sources/': [ ['exclude', '_win.(h|cpp)$'], 5 'sources/': [ ['exclude', '_win.(h|cpp)$'],
6 ], 6 ],
7 }], 7 }],
8 ['skia_os != "mac"', { 8 ['skia_os != "mac"', {
9 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], 9 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
10 ], 10 ],
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'sources': [ 100 'sources': [
101 '<@(skgpu_sources)', 101 '<@(skgpu_sources)',
102 '<@(skgpu_native_gl_sources)', 102 '<@(skgpu_native_gl_sources)',
103 '<@(skgpu_angle_gl_sources)', 103 '<@(skgpu_angle_gl_sources)',
104 '<@(skgpu_mesa_gl_sources)', 104 '<@(skgpu_mesa_gl_sources)',
105 '<@(skgpu_debug_gl_sources)', 105 '<@(skgpu_debug_gl_sources)',
106 '<@(skgpu_null_gl_sources)', 106 '<@(skgpu_null_gl_sources)',
107 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld). 107 'gpu.gypi', # Makes the gypi appear in IDEs (but does not modify the bui ld).
108 ], 108 ],
109 'conditions': [ 109 'conditions': [
110 [ 'skia_nv_path_rendering', {
111 'defines': [
112 'GR_GL_USE_NV_PATH_RENDERING=1',
113 ],
114 }],
115 [ 'skia_stroke_path_rendering', { 110 [ 'skia_stroke_path_rendering', {
116 'sources': [ 111 'sources': [
117 '../experimental/StrokePathRenderer/GrStrokePathRenderer.h', 112 '../experimental/StrokePathRenderer/GrStrokePathRenderer.h',
118 '../experimental/StrokePathRenderer/GrStrokePathRenderer.cpp', 113 '../experimental/StrokePathRenderer/GrStrokePathRenderer.cpp',
119 ], 114 ],
120 'defines': [ 115 'defines': [
121 'GR_STROKE_PATH_RENDERING=1', 116 'GR_STROKE_PATH_RENDERING=1',
122 ], 117 ],
123 }], 118 }],
124 [ 'skia_android_path_rendering', { 119 [ 'skia_android_path_rendering', {
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 'libraries': [ 228 'libraries': [
234 '-lGLESv2', 229 '-lGLESv2',
235 '-lEGL', 230 '-lEGL',
236 ], 231 ],
237 }, 232 },
238 }], 233 }],
239 ], 234 ],
240 }, 235 },
241 ], 236 ],
242 } 237 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698