| OLD | NEW |
| 1 # Gyp for utils. | 1 # Gyp for utils. |
| 2 { | 2 { |
| 3 'targets': [ | 3 'targets': [ |
| 4 { | 4 { |
| 5 'target_name': 'utils', | 5 'target_name': 'utils', |
| 6 'product_name': 'skia_utils', | 6 'product_name': 'skia_utils', |
| 7 'type': 'static_library', | 7 'type': 'static_library', |
| 8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'core.gyp:*', | 10 'core.gyp:*', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 '../src/utils', | 23 '../src/utils', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 # Classes for a threadpool. | 26 # Classes for a threadpool. |
| 27 '../include/utils/SkCondVar.h', | 27 '../include/utils/SkCondVar.h', |
| 28 '../include/utils/SkCountdown.h', | 28 '../include/utils/SkCountdown.h', |
| 29 '../include/utils/SkRunnable.h', | 29 '../include/utils/SkRunnable.h', |
| 30 '../include/utils/SkThreadPool.h', | 30 '../include/utils/SkThreadPool.h', |
| 31 '../src/utils/SkCondVar.cpp', | 31 '../src/utils/SkCondVar.cpp', |
| 32 '../src/utils/SkCountdown.cpp', | 32 '../src/utils/SkCountdown.cpp', |
| 33 '../src/utils/SkThreadPool.cpp', | |
| 34 | 33 |
| 35 '../include/utils/SkBoundaryPatch.h', | 34 '../include/utils/SkBoundaryPatch.h', |
| 36 '../include/utils/SkFrontBufferedStream.h', | 35 '../include/utils/SkFrontBufferedStream.h', |
| 37 '../include/utils/SkCamera.h', | 36 '../include/utils/SkCamera.h', |
| 38 '../include/utils/SkCanvasStateUtils.h', | 37 '../include/utils/SkCanvasStateUtils.h', |
| 39 '../include/utils/SkCubicInterval.h', | 38 '../include/utils/SkCubicInterval.h', |
| 40 '../include/utils/SkCullPoints.h', | 39 '../include/utils/SkCullPoints.h', |
| 41 '../include/utils/SkDebugUtils.h', | 40 '../include/utils/SkDebugUtils.h', |
| 42 '../include/utils/SkDeferredCanvas.h', | 41 '../include/utils/SkDeferredCanvas.h', |
| 43 '../include/utils/SkDumpCanvas.h', | 42 '../include/utils/SkDumpCanvas.h', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 }], | 219 }], |
| 221 ['skia_run_pdfviewer_in_gm', { | 220 ['skia_run_pdfviewer_in_gm', { |
| 222 'defines': [ | 221 'defines': [ |
| 223 'SK_BUILD_NATIVE_PDF_RENDERER', | 222 'SK_BUILD_NATIVE_PDF_RENDERER', |
| 224 ], | 223 ], |
| 225 }], | 224 }], |
| 226 ], | 225 ], |
| 227 'direct_dependent_settings': { | 226 'direct_dependent_settings': { |
| 228 'include_dirs': [ | 227 'include_dirs': [ |
| 229 '../include/utils', | 228 '../include/utils', |
| 229 '../src/utils', |
| 230 ], | 230 ], |
| 231 }, | 231 }, |
| 232 }, | 232 }, |
| 233 ], | 233 ], |
| 234 } | 234 } |
| OLD | NEW |