| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |