| OLD | NEW |
| 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 'utils' files | 5 # Include this gypi to include all 'utils' 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 |
| 11 # | 11 # |
| 12 { | 12 { |
| 13 'sources': [ | 13 'sources': [ |
| 14 # Classes for a threadpool. | |
| 15 '<(skia_src_path)/utils/SkCondVar.h', | |
| 16 '<(skia_src_path)/utils/SkRunnable.h', | |
| 17 '<(skia_src_path)/utils/SkCondVar.cpp', | |
| 18 | |
| 19 '<(skia_include_path)/utils/SkBoundaryPatch.h', | 14 '<(skia_include_path)/utils/SkBoundaryPatch.h', |
| 20 '<(skia_include_path)/utils/SkFrontBufferedStream.h', | 15 '<(skia_include_path)/utils/SkFrontBufferedStream.h', |
| 21 '<(skia_include_path)/utils/SkCamera.h', | 16 '<(skia_include_path)/utils/SkCamera.h', |
| 22 '<(skia_include_path)/utils/SkCanvasStateUtils.h', | 17 '<(skia_include_path)/utils/SkCanvasStateUtils.h', |
| 23 '<(skia_include_path)/utils/SkCubicInterval.h', | 18 '<(skia_include_path)/utils/SkCubicInterval.h', |
| 24 '<(skia_include_path)/utils/SkCullPoints.h', | 19 '<(skia_include_path)/utils/SkCullPoints.h', |
| 25 '<(skia_include_path)/utils/SkDebugUtils.h', | 20 '<(skia_include_path)/utils/SkDebugUtils.h', |
| 26 '<(skia_include_path)/utils/SkDeferredCanvas.h', | 21 '<(skia_include_path)/utils/SkDeferredCanvas.h', |
| 27 '<(skia_include_path)/utils/SkDumpCanvas.h', | 22 '<(skia_include_path)/utils/SkDumpCanvas.h', |
| 28 '<(skia_include_path)/utils/SkEventTracer.h', | 23 '<(skia_include_path)/utils/SkEventTracer.h', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 '<(skia_src_path)/utils/win/SkWGL.h', | 124 '<(skia_src_path)/utils/win/SkWGL.h', |
| 130 '<(skia_src_path)/utils/win/SkWGL_win.cpp', | 125 '<(skia_src_path)/utils/win/SkWGL_win.cpp', |
| 131 | 126 |
| 132 #testing | 127 #testing |
| 133 '<(skia_src_path)/fonts/SkGScalerContext.cpp', | 128 '<(skia_src_path)/fonts/SkGScalerContext.cpp', |
| 134 '<(skia_src_path)/fonts/SkGScalerContext.h', | 129 '<(skia_src_path)/fonts/SkGScalerContext.h', |
| 135 '<(skia_src_path)/fonts/SkTestScalerContext.cpp', | 130 '<(skia_src_path)/fonts/SkTestScalerContext.cpp', |
| 136 '<(skia_src_path)/fonts/SkTestScalerContext.h', | 131 '<(skia_src_path)/fonts/SkTestScalerContext.h', |
| 137 ], | 132 ], |
| 138 } | 133 } |
| OLD | NEW |