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

Side by Side Diff: gyp/gpu.gypi

Issue 1985163002: Remove GrFontScaler class (Closed) Base URL: https://chromium.googlesource.com/skia.git@rmkey
Patch Set: remove comments Created 4 years, 7 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 | « no previous file | src/gpu/batches/GrAtlasTextBatch.cpp » ('j') | src/gpu/text/GrBatchFontCache.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Include this gypi to include all 'gpu' files 5 # Include this gypi to include all 'gpu' files
6 # The parent gyp/gypi file must define 6 # The parent gyp/gypi file must define
7 # 'skia_src_path' e.g. skia/trunk/src 7 # 'skia_src_path' e.g. skia/trunk/src
8 # 'skia_include_path' e.g. skia/trunk/include 8 # 'skia_include_path' e.g. skia/trunk/include
9 # 9 #
10 # The skia build defines these in common_variables.gypi 10 # The skia build defines these in common_variables.gypi
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 # text 309 # text
310 '<(skia_src_path)/gpu/text/GrAtlasTextBlob.cpp', 310 '<(skia_src_path)/gpu/text/GrAtlasTextBlob.cpp',
311 '<(skia_src_path)/gpu/text/GrAtlasTextBlob_regenInBatch.cpp', 311 '<(skia_src_path)/gpu/text/GrAtlasTextBlob_regenInBatch.cpp',
312 '<(skia_src_path)/gpu/text/GrAtlasTextBlob.h', 312 '<(skia_src_path)/gpu/text/GrAtlasTextBlob.h',
313 '<(skia_src_path)/gpu/text/GrAtlasTextContext.cpp', 313 '<(skia_src_path)/gpu/text/GrAtlasTextContext.cpp',
314 '<(skia_src_path)/gpu/text/GrAtlasTextContext.h', 314 '<(skia_src_path)/gpu/text/GrAtlasTextContext.h',
315 '<(skia_src_path)/gpu/text/GrBatchFontCache.cpp', 315 '<(skia_src_path)/gpu/text/GrBatchFontCache.cpp',
316 '<(skia_src_path)/gpu/text/GrBatchFontCache.h', 316 '<(skia_src_path)/gpu/text/GrBatchFontCache.h',
317 '<(skia_src_path)/gpu/text/GrDistanceFieldAdjustTable.cpp', 317 '<(skia_src_path)/gpu/text/GrDistanceFieldAdjustTable.cpp',
318 '<(skia_src_path)/gpu/text/GrDistanceFieldAdjustTable.h', 318 '<(skia_src_path)/gpu/text/GrDistanceFieldAdjustTable.h',
319 '<(skia_src_path)/gpu/text/GrFontScaler.cpp',
320 '<(skia_src_path)/gpu/text/GrFontScaler.h',
321 '<(skia_src_path)/gpu/text/GrStencilAndCoverTextContext.cpp', 319 '<(skia_src_path)/gpu/text/GrStencilAndCoverTextContext.cpp',
322 '<(skia_src_path)/gpu/text/GrStencilAndCoverTextContext.h', 320 '<(skia_src_path)/gpu/text/GrStencilAndCoverTextContext.h',
323 '<(skia_src_path)/gpu/text/GrTextBlobCache.cpp', 321 '<(skia_src_path)/gpu/text/GrTextBlobCache.cpp',
324 '<(skia_src_path)/gpu/text/GrTextBlobCache.h', 322 '<(skia_src_path)/gpu/text/GrTextBlobCache.h',
325 '<(skia_src_path)/gpu/text/GrTextUtils.cpp', 323 '<(skia_src_path)/gpu/text/GrTextUtils.cpp',
326 '<(skia_src_path)/gpu/text/GrTextUtils.h', 324 '<(skia_src_path)/gpu/text/GrTextUtils.h',
327 325
328 '<(skia_src_path)/gpu/gl/GrGLAssembleInterface.cpp', 326 '<(skia_src_path)/gpu/gl/GrGLAssembleInterface.cpp',
329 '<(skia_src_path)/gpu/gl/GrGLBuffer.cpp', 327 '<(skia_src_path)/gpu/gl/GrGLBuffer.cpp',
330 '<(skia_src_path)/gpu/gl/GrGLBuffer.h', 328 '<(skia_src_path)/gpu/gl/GrGLBuffer.h',
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp', 511 '<(skia_src_path)/gpu/gl/win/GrGLCreateNativeInterface_win.cpp',
514 '<(skia_src_path)/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp', 512 '<(skia_src_path)/gpu/gl/glx/GrGLCreateNativeInterface_glx.cpp',
515 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp', 513 '<(skia_src_path)/gpu/gl/egl/GrGLCreateNativeInterface_egl.cpp',
516 '<(skia_src_path)/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp', 514 '<(skia_src_path)/gpu/gl/iOS/GrGLCreateNativeInterface_iOS.cpp',
517 '<(skia_src_path)/gpu/gl/android/GrGLCreateNativeInterface_android.cpp', 515 '<(skia_src_path)/gpu/gl/android/GrGLCreateNativeInterface_android.cpp',
518 ], 516 ],
519 'skgpu_null_gl_sources': [ 517 'skgpu_null_gl_sources': [
520 ], 518 ],
521 }, 519 },
522 } 520 }
OLDNEW
« no previous file with comments | « no previous file | src/gpu/batches/GrAtlasTextBatch.cpp » ('j') | src/gpu/text/GrBatchFontCache.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698