OLD | NEW |
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. |
11 '<(skia_src_path)/utils/SkCondVar.h', | 11 '<(skia_src_path)/utils/SkCondVar.h', |
12 '<(skia_src_path)/utils/SkRunnable.h', | 12 '<(skia_src_path)/utils/SkRunnable.h', |
| 13 '<(skia_src_path)/utils/SkThreadPool.h', |
13 '<(skia_src_path)/utils/SkCondVar.cpp', | 14 '<(skia_src_path)/utils/SkCondVar.cpp', |
14 | 15 |
15 '<(skia_include_path)/utils/SkBoundaryPatch.h', | 16 '<(skia_include_path)/utils/SkBoundaryPatch.h', |
16 '<(skia_include_path)/utils/SkFrontBufferedStream.h', | 17 '<(skia_include_path)/utils/SkFrontBufferedStream.h', |
17 '<(skia_include_path)/utils/SkCamera.h', | 18 '<(skia_include_path)/utils/SkCamera.h', |
18 '<(skia_include_path)/utils/SkCanvasStateUtils.h', | 19 '<(skia_include_path)/utils/SkCanvasStateUtils.h', |
19 '<(skia_include_path)/utils/SkCubicInterval.h', | 20 '<(skia_include_path)/utils/SkCubicInterval.h', |
20 '<(skia_include_path)/utils/SkCullPoints.h', | 21 '<(skia_include_path)/utils/SkCullPoints.h', |
21 '<(skia_include_path)/utils/SkDebugUtils.h', | 22 '<(skia_include_path)/utils/SkDebugUtils.h', |
22 '<(skia_include_path)/utils/SkDeferredCanvas.h', | 23 '<(skia_include_path)/utils/SkDeferredCanvas.h', |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 '<(skia_src_path)/utils/win/SkIStream.cpp', | 127 '<(skia_src_path)/utils/win/SkIStream.cpp', |
127 '<(skia_src_path)/utils/win/SkWGL_win.cpp', | 128 '<(skia_src_path)/utils/win/SkWGL_win.cpp', |
128 | 129 |
129 #testing | 130 #testing |
130 '<(skia_src_path)/fonts/SkGScalerContext.cpp', | 131 '<(skia_src_path)/fonts/SkGScalerContext.cpp', |
131 '<(skia_src_path)/fonts/SkGScalerContext.h', | 132 '<(skia_src_path)/fonts/SkGScalerContext.h', |
132 '<(skia_src_path)/fonts/SkTestScalerContext.cpp', | 133 '<(skia_src_path)/fonts/SkTestScalerContext.cpp', |
133 '<(skia_src_path)/fonts/SkTestScalerContext.h', | 134 '<(skia_src_path)/fonts/SkTestScalerContext.h', |
134 ], | 135 ], |
135 } | 136 } |
OLD | NEW |