| OLD | NEW |
| 1 # Include this gypi to include all 'gpu' files | 1 # Include this gypi to include all 'gpu' files |
| 2 # The parent gyp/gypi file must define | 2 # The parent gyp/gypi file must define |
| 3 # 'skia_src_path' e.g. skia/trunk/src | 3 # 'skia_src_path' e.g. skia/trunk/src |
| 4 # 'skia_include_path' e.g. skia/trunk/include | 4 # 'skia_include_path' e.g. skia/trunk/include |
| 5 # | 5 # |
| 6 # The skia build defines these in common_variables.gypi | 6 # The skia build defines these in common_variables.gypi |
| 7 # | 7 # |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'skgpu_sources': [ | 10 'skgpu_sources': [ |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 292 |
| 293 '<(skia_include_path)/gpu/gl/SkGLContext.h', | 293 '<(skia_include_path)/gpu/gl/SkGLContext.h', |
| 294 | 294 |
| 295 '<(skia_src_path)/gpu/SkGpuDevice.cpp', | 295 '<(skia_src_path)/gpu/SkGpuDevice.cpp', |
| 296 '<(skia_src_path)/gpu/SkGpuDevice.h', | 296 '<(skia_src_path)/gpu/SkGpuDevice.h', |
| 297 '<(skia_src_path)/gpu/SkGr.cpp', | 297 '<(skia_src_path)/gpu/SkGr.cpp', |
| 298 '<(skia_src_path)/gpu/SkGrPixelRef.cpp', | 298 '<(skia_src_path)/gpu/SkGrPixelRef.cpp', |
| 299 '<(skia_src_path)/gpu/SkGrTexturePixelRef.cpp', | 299 '<(skia_src_path)/gpu/SkGrTexturePixelRef.cpp', |
| 300 | 300 |
| 301 '<(skia_src_path)/image/SkImage_Gpu.cpp', | 301 '<(skia_src_path)/image/SkImage_Gpu.cpp', |
| 302 '<(skia_src_path)/image/SkSurface_Gpu.h', |
| 302 '<(skia_src_path)/image/SkSurface_Gpu.cpp', | 303 '<(skia_src_path)/image/SkSurface_Gpu.cpp', |
| 303 | 304 |
| 304 '<(skia_src_path)/gpu/gl/SkGLContext.cpp' | 305 '<(skia_src_path)/gpu/gl/SkGLContext.cpp' |
| 305 ], | 306 ], |
| 306 'skgpu_native_gl_sources': [ | 307 'skgpu_native_gl_sources': [ |
| 307 '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_native.cpp', | 308 '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_native.cpp', |
| 308 '<(skia_src_path)/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp', | 309 '<(skia_src_path)/gpu/gl/mac/GrGLCreateNativeInterface_mac.cpp', |
| 309 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp', | 310 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp', |
| 310 '<(skia_src_path)/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp', | 311 '<(skia_src_path)/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp', |
| 311 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp', | 312 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 ], | 362 ], |
| 362 'skgpu_null_gl_sources': [ | 363 'skgpu_null_gl_sources': [ |
| 363 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', | 364 '<(skia_src_path)/gpu/gl/GrGLCreateNullInterface.cpp', |
| 364 | 365 |
| 365 # Sk files | 366 # Sk files |
| 366 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', | 367 '<(skia_src_path)/gpu/gl/SkNullGLContext.cpp', |
| 367 '<(skia_src_path)/gpu/gl/SkNullGLContext.h', | 368 '<(skia_src_path)/gpu/gl/SkNullGLContext.h', |
| 368 ], | 369 ], |
| 369 }, | 370 }, |
| 370 } | 371 } |
| OLD | NEW |