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

Side by Side Diff: gyp/utils.gypi

Issue 1032173002: Add a paint filter utility canvas (SkPaintFilterCanvas) (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: cleanup 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 | « no previous file | include/utils/SkPaintFilterCanvas.h » ('j') | include/utils/SkPaintFilterCanvas.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Include this gypi to include all 'utils' files 1 # Include this gypi to include all 'utils' 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 'sources': [ 9 'sources': [
10 # Classes for a threadpool. 10 # Classes for a threadpool.
(...skipping 12 matching lines...) Expand all
23 '<(skia_include_path)/utils/SkDumpCanvas.h', 23 '<(skia_include_path)/utils/SkDumpCanvas.h',
24 '<(skia_include_path)/utils/SkEventTracer.h', 24 '<(skia_include_path)/utils/SkEventTracer.h',
25 '<(skia_include_path)/utils/SkInterpolator.h', 25 '<(skia_include_path)/utils/SkInterpolator.h',
26 '<(skia_include_path)/utils/SkLayer.h', 26 '<(skia_include_path)/utils/SkLayer.h',
27 '<(skia_include_path)/utils/SkMatrix44.h', 27 '<(skia_include_path)/utils/SkMatrix44.h',
28 '<(skia_include_path)/utils/SkMeshUtils.h', 28 '<(skia_include_path)/utils/SkMeshUtils.h',
29 '<(skia_include_path)/utils/SkNinePatch.h', 29 '<(skia_include_path)/utils/SkNinePatch.h',
30 '<(skia_include_path)/utils/SkNoSaveLayerCanvas.h', 30 '<(skia_include_path)/utils/SkNoSaveLayerCanvas.h',
31 '<(skia_include_path)/utils/SkNWayCanvas.h', 31 '<(skia_include_path)/utils/SkNWayCanvas.h',
32 '<(skia_include_path)/utils/SkNullCanvas.h', 32 '<(skia_include_path)/utils/SkNullCanvas.h',
33 '<(skia_include_path)/utils/SkPaintFilterCanvas.h',
33 '<(skia_include_path)/utils/SkParse.h', 34 '<(skia_include_path)/utils/SkParse.h',
34 '<(skia_include_path)/utils/SkParsePaint.h', 35 '<(skia_include_path)/utils/SkParsePaint.h',
35 '<(skia_include_path)/utils/SkParsePath.h', 36 '<(skia_include_path)/utils/SkParsePath.h',
36 '<(skia_include_path)/utils/SkPictureUtils.h', 37 '<(skia_include_path)/utils/SkPictureUtils.h',
37 '<(skia_include_path)/utils/SkRandom.h', 38 '<(skia_include_path)/utils/SkRandom.h',
38 '<(skia_include_path)/utils/SkRTConf.h', 39 '<(skia_include_path)/utils/SkRTConf.h',
39 '<(skia_include_path)/utils/SkTextBox.h', 40 '<(skia_include_path)/utils/SkTextBox.h',
40 41
41 '<(skia_src_path)/utils/SkBase64.cpp', 42 '<(skia_src_path)/utils/SkBase64.cpp',
42 '<(skia_src_path)/utils/SkBase64.h', 43 '<(skia_src_path)/utils/SkBase64.h',
(...skipping 20 matching lines...) Expand all
63 '<(skia_src_path)/utils/SkMatrix22.cpp', 64 '<(skia_src_path)/utils/SkMatrix22.cpp',
64 '<(skia_src_path)/utils/SkMatrix22.h', 65 '<(skia_src_path)/utils/SkMatrix22.h',
65 '<(skia_src_path)/utils/SkMatrix44.cpp', 66 '<(skia_src_path)/utils/SkMatrix44.cpp',
66 '<(skia_src_path)/utils/SkMD5.cpp', 67 '<(skia_src_path)/utils/SkMD5.cpp',
67 '<(skia_src_path)/utils/SkMD5.h', 68 '<(skia_src_path)/utils/SkMD5.h',
68 '<(skia_src_path)/utils/SkMeshUtils.cpp', 69 '<(skia_src_path)/utils/SkMeshUtils.cpp',
69 '<(skia_src_path)/utils/SkNinePatch.cpp', 70 '<(skia_src_path)/utils/SkNinePatch.cpp',
70 '<(skia_src_path)/utils/SkNWayCanvas.cpp', 71 '<(skia_src_path)/utils/SkNWayCanvas.cpp',
71 '<(skia_src_path)/utils/SkNullCanvas.cpp', 72 '<(skia_src_path)/utils/SkNullCanvas.cpp',
72 '<(skia_src_path)/utils/SkOSFile.cpp', 73 '<(skia_src_path)/utils/SkOSFile.cpp',
74 '<(skia_src_path)/utils/SkPaintFilterCanvas.cpp',
73 '<(skia_src_path)/utils/SkParse.cpp', 75 '<(skia_src_path)/utils/SkParse.cpp',
74 '<(skia_src_path)/utils/SkParseColor.cpp', 76 '<(skia_src_path)/utils/SkParseColor.cpp',
75 '<(skia_src_path)/utils/SkParsePath.cpp', 77 '<(skia_src_path)/utils/SkParsePath.cpp',
76 '<(skia_src_path)/utils/SkPictureUtils.cpp', 78 '<(skia_src_path)/utils/SkPictureUtils.cpp',
77 '<(skia_src_path)/utils/SkPatchGrid.cpp', 79 '<(skia_src_path)/utils/SkPatchGrid.cpp',
78 '<(skia_src_path)/utils/SkPatchGrid.h', 80 '<(skia_src_path)/utils/SkPatchGrid.h',
79 '<(skia_src_path)/utils/SkPatchUtils.cpp', 81 '<(skia_src_path)/utils/SkPatchUtils.cpp',
80 '<(skia_src_path)/utils/SkPatchUtils.h', 82 '<(skia_src_path)/utils/SkPatchUtils.h',
81 '<(skia_src_path)/utils/SkPathUtils.cpp', 83 '<(skia_src_path)/utils/SkPathUtils.cpp',
82 '<(skia_src_path)/utils/SkSHA1.cpp', 84 '<(skia_src_path)/utils/SkSHA1.cpp',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 '<(skia_src_path)/utils/win/SkWGL.h', 127 '<(skia_src_path)/utils/win/SkWGL.h',
126 '<(skia_src_path)/utils/win/SkWGL_win.cpp', 128 '<(skia_src_path)/utils/win/SkWGL_win.cpp',
127 129
128 #testing 130 #testing
129 '<(skia_src_path)/fonts/SkGScalerContext.cpp', 131 '<(skia_src_path)/fonts/SkGScalerContext.cpp',
130 '<(skia_src_path)/fonts/SkGScalerContext.h', 132 '<(skia_src_path)/fonts/SkGScalerContext.h',
131 '<(skia_src_path)/fonts/SkTestScalerContext.cpp', 133 '<(skia_src_path)/fonts/SkTestScalerContext.cpp',
132 '<(skia_src_path)/fonts/SkTestScalerContext.h', 134 '<(skia_src_path)/fonts/SkTestScalerContext.h',
133 ], 135 ],
134 } 136 }
OLDNEW
« no previous file with comments | « no previous file | include/utils/SkPaintFilterCanvas.h » ('j') | include/utils/SkPaintFilterCanvas.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698