diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-11 17:23:40 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-11 17:23:40 +0000 |
commit | f2f4d5ebf657ec531d618fc52b39e4743edfe0cc (patch) | |
tree | a16fd6948a446725cc7b4e48fe774edf722477ad /skia | |
parent | 7d999d5179ef9eb0cefde962b630b373f3e83e39 (diff) | |
download | chromium_src-f2f4d5ebf657ec531d618fc52b39e4743edfe0cc.zip chromium_src-f2f4d5ebf657ec531d618fc52b39e4743edfe0cc.tar.gz chromium_src-f2f4d5ebf657ec531d618fc52b39e4743edfe0cc.tar.bz2 |
Add support for substring replacement in gypi_to_gn
Use substring replacement in skia source file list, and update the skia BUILD.gn file accordingly. The .gn file gets a bit simpler now: we can do the substring replacement to make absolute paths rather than doing rebase for all the files.
R=djsollen@google.com, dpranke@chromium.org
Review URL: https://codereview.chromium.org/231983002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/BUILD.gn | 73 | ||||
-rw-r--r-- | skia/skia_gn_files.gypi | 1642 |
2 files changed, 854 insertions, 861 deletions
diff --git a/skia/BUILD.gn b/skia/BUILD.gn index 7e1d5a7..8e924b6 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -11,18 +11,13 @@ skia_support_gpu = !is_ios skia_support_pdf = !is_ios && enable_printing != 0 # The list of Skia files is kept in skia_gn_files.gypi. Read it. -gypi_values = exec_script("//build/gypi_to_gn.py", - [ rebase_path("skia_gn_files.gypi") ], - "scope", - [ "skia_gn_files.gypi" ]) - -# This files in the skia gypi file are relative to this directory. -skia_dir = "//third_party/skia" - -# Same as skia_dir but relative to the current directory. This is what all -# files will be prefixed to once we rebase them to be relative to our file. If -# you need to filter out a file, prefix it with $skia_rel_dir. -skia_rel_dir = rebase_path(".", ".", skia_dir) +gypi_values = exec_script( + "//build/gypi_to_gn.py", + [ rebase_path("skia_gn_files.gypi"), + "--replace=<(skia_include_path)=//third_party/skia/include", + "--replace=<(skia_src_path)=//third_party/skia/src" ] + "scope", + [ "skia_gn_files.gypi" ]) # External-facing config for dependent code. config("skia_config") { @@ -221,14 +216,14 @@ component("skia") { ] # The skia gypi values are relative to the skia_dir, so we need to rebase. - sources += rebase_path(gypi_values.skia_core_sources, ".", skia_dir) - sources += rebase_path(gypi_values.skia_effects_sources, ".", skia_dir) - sources += rebase_path(gypi_values.skia_pdf_sources, ".", skia_dir) - sources += rebase_path(gypi_values.skia_library_sources, ".", skia_dir) + sources += gypi_values.skia_core_sources + sources += gypi_values.skia_effects_sources + sources += gypi_values.skia_pdf_sources + sources += gypi_values.skia_library_sources # GPU if (skia_support_gpu) { - sources += rebase_path(gypi_values.skia_gpu_sources, ".", skia_dir) + sources += gypi_values.skia_gpu_sources } # Fixup Chrome sources. @@ -251,46 +246,46 @@ component("skia") { # Fixup skia library sources. if (is_win) { sources -= [ - "$skia_rel_dir/src/ports/SkOSFile_posix.cpp", - "$skia_rel_dir/src/ports/SkTime_Unix.cpp", - "$skia_rel_dir/src/ports/SkTLS_pthread.cpp", - "$skia_rel_dir/src/ports/SkFontConfigInterface_direct.cpp", - "$skia_rel_dir/src/fonts/SkFontMgr_fontconfig.cpp", + "//third_party/skia/src/ports/SkOSFile_posix.cpp", + "//third_party/skia/src/ports/SkTime_Unix.cpp", + "//third_party/skia/src/ports/SkTLS_pthread.cpp", + "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp", + "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp", ] } else { sources -= [ - "$skia_rel_dir/src/ports/SkFontHost_win.cpp", - "$skia_rel_dir/src/ports/SkFontHost_win_dw.cpp", - "$skia_rel_dir/src/ports/SkFontMgr_default_gdi.cpp", - "$skia_rel_dir/src/ports/SkOSFile_win.cpp", - "$skia_rel_dir/src/ports/SkThread_win.cpp", - "$skia_rel_dir/src/ports/SkTLS_win.cpp", - "$skia_rel_dir/src/utils/SkThreadUtils_win.cpp", + "//third_party/skia/src/ports/SkFontHost_win.cpp", + "//third_party/skia/src/ports/SkFontHost_win_dw.cpp", + "//third_party/skia/src/ports/SkFontMgr_default_gdi.cpp", + "//third_party/skia/src/ports/SkOSFile_win.cpp", + "//third_party/skia/src/ports/SkThread_win.cpp", + "//third_party/skia/src/ports/SkTLS_win.cpp", + "//third_party/skia/src/utils/SkThreadUtils_win.cpp", ] } if (!is_android) { sources -= [ - "$skia_rel_dir/src/ports/SkFontConfigInterface_android.cpp", - "$skia_rel_dir/src/ports/SkFontConfigParser_android.cpp", + "//third_party/skia/src/ports/SkFontConfigInterface_android.cpp", + "//third_party/skia/src/ports/SkFontConfigParser_android.cpp", ] } if (!is_mac) { sources -= [ - "$skia_rel_dir/src/ports/SkFontHost_mac.cpp", - "$skia_rel_dir/src/utils/SkThreadUtils_pthread_mach.cpp", + "//third_party/skia/src/ports/SkFontHost_mac.cpp", + "//third_party/skia/src/utils/SkThreadUtils_pthread_mach.cpp", ] } if (!is_linux) { sources -= [ - "$skia_rel_dir/src/ports/SkFontHost_FreeType.cpp", - "$skia_rel_dir/src/ports/SkFontHost_FreeType_common.cpp", - "$skia_rel_dir/src/ports/SkFontHost_fontconfig.cpp", - "$skia_rel_dir/src/ports/SkFontHost_linux.cpp", + "//third_party/skia/src/ports/SkFontHost_FreeType.cpp", + "//third_party/skia/src/ports/SkFontHost_FreeType_common.cpp", + "//third_party/skia/src/ports/SkFontHost_fontconfig.cpp", + "//third_party/skia/src/ports/SkFontHost_linux.cpp", ] } else if (!is_android) { sources -= [ - "$skia_rel_dir/src/ports/SkFontConfigInterface_direct.cpp", - "$skia_rel_dir/src/fonts/SkFontMgr_fontconfig.cpp", + "//third_party/skia/src/ports/SkFontConfigInterface_direct.cpp", + "//third_party/skia/src/fonts/SkFontMgr_fontconfig.cpp", ] } diff --git a/skia/skia_gn_files.gypi b/skia/skia_gn_files.gypi index dab3519..dccad77 100644 --- a/skia/skia_gn_files.gypi +++ b/skia/skia_gn_files.gypi @@ -24,859 +24,857 @@ ], 'skia_gpu_sources': [ - 'include/gpu/GrBackendEffectFactory.h', - 'include/gpu/GrClipData.h', - 'include/gpu/GrColor.h', - 'include/gpu/GrConfig.h', - 'include/gpu/GrContext.h', - 'include/gpu/GrContextFactory.h', - 'include/gpu/GrCoordTransform.h', - 'include/gpu/GrEffect.h', - 'include/gpu/GrEffectStage.h', - 'include/gpu/GrEffectUnitTest.h', - 'include/gpu/GrFontScaler.h', - 'include/gpu/GrGlyph.h', - 'include/gpu/GrKey.h', - 'include/gpu/GrPaint.h', - 'include/gpu/GrPathRendererChain.h', - 'include/gpu/GrPoint.h', - 'include/gpu/GrRect.h', - 'include/gpu/GrRenderTarget.h', - 'include/gpu/GrResource.h', - 'include/gpu/GrSurface.h', - 'include/gpu/GrTBackendEffectFactory.h', - 'include/gpu/GrTexture.h', - 'include/gpu/GrTextureAccess.h', - 'include/gpu/GrTypes.h', - 'include/gpu/GrUserConfig.h', + '<(skia_include_path)/gpu/GrBackendEffectFactory.h', + '<(skia_include_path)/gpu/GrClipData.h', + '<(skia_include_path)/gpu/GrColor.h', + '<(skia_include_path)/gpu/GrConfig.h', + '<(skia_include_path)/gpu/GrContext.h', + '<(skia_include_path)/gpu/GrContextFactory.h', + '<(skia_include_path)/gpu/GrCoordTransform.h', + '<(skia_include_path)/gpu/GrEffect.h', + '<(skia_include_path)/gpu/GrEffectStage.h', + '<(skia_include_path)/gpu/GrEffectUnitTest.h', + '<(skia_include_path)/gpu/GrFontScaler.h', + '<(skia_include_path)/gpu/GrGlyph.h', + '<(skia_include_path)/gpu/GrKey.h', + '<(skia_include_path)/gpu/GrPaint.h', + '<(skia_include_path)/gpu/GrPathRendererChain.h', + '<(skia_include_path)/gpu/GrPoint.h', + '<(skia_include_path)/gpu/GrRect.h', + '<(skia_include_path)/gpu/GrRenderTarget.h', + '<(skia_include_path)/gpu/GrResource.h', + '<(skia_include_path)/gpu/GrSurface.h', + '<(skia_include_path)/gpu/GrTBackendEffectFactory.h', + '<(skia_include_path)/gpu/GrTexture.h', + '<(skia_include_path)/gpu/GrTextureAccess.h', + '<(skia_include_path)/gpu/GrTypes.h', + '<(skia_include_path)/gpu/GrUserConfig.h', - 'include/gpu/gl/GrGLConfig.h', - 'include/gpu/gl/GrGLExtensions.h', - 'include/gpu/gl/GrGLFunctions.h', - 'include/gpu/gl/GrGLInterface.h', + '<(skia_include_path)/gpu/gl/GrGLConfig.h', + '<(skia_include_path)/gpu/gl/GrGLExtensions.h', + '<(skia_include_path)/gpu/gl/GrGLFunctions.h', + '<(skia_include_path)/gpu/gl/GrGLInterface.h', - 'src/gpu/GrAAHairLinePathRenderer.cpp', - 'src/gpu/GrAAHairLinePathRenderer.h', - 'src/gpu/GrAAConvexPathRenderer.cpp', - 'src/gpu/GrAAConvexPathRenderer.h', - 'src/gpu/GrAARectRenderer.cpp', - 'src/gpu/GrAARectRenderer.h', - 'src/gpu/GrAddPathRenderers_default.cpp', - 'src/gpu/GrAllocator.h', - 'src/gpu/GrAllocPool.h', - 'src/gpu/GrAllocPool.cpp', - 'src/gpu/GrAtlas.cpp', - 'src/gpu/GrAtlas.h', - 'src/gpu/GrBinHashKey.h', - 'src/gpu/GrBitmapTextContext.cpp', - 'src/gpu/GrBitmapTextContext.h', - 'src/gpu/GrBlend.cpp', - 'src/gpu/GrBlend.h', - 'src/gpu/GrBufferAllocPool.cpp', - 'src/gpu/GrBufferAllocPool.h', - 'src/gpu/GrCacheID.cpp', - 'src/gpu/GrClipData.cpp', - 'src/gpu/GrContext.cpp', - 'src/gpu/GrDefaultPathRenderer.cpp', - 'src/gpu/GrDefaultPathRenderer.h', - 'src/gpu/GrDistanceFieldTextContext.h', - 'src/gpu/GrDistanceFieldTextContext.cpp', - 'src/gpu/GrDrawState.cpp', - 'src/gpu/GrDrawState.h', - 'src/gpu/GrDrawTarget.cpp', - 'src/gpu/GrDrawTarget.h', - 'src/gpu/GrDrawTargetCaps.h', - 'src/gpu/GrEffect.cpp', - 'src/gpu/GrGeometryBuffer.h', - 'src/gpu/GrClipMaskCache.h', - 'src/gpu/GrClipMaskCache.cpp', - 'src/gpu/GrClipMaskManager.h', - 'src/gpu/GrClipMaskManager.cpp', - 'src/gpu/GrGpu.cpp', - 'src/gpu/GrGpu.h', - 'src/gpu/GrGpuFactory.cpp', - 'src/gpu/GrIndexBuffer.h', - 'src/gpu/GrInOrderDrawBuffer.cpp', - 'src/gpu/GrInOrderDrawBuffer.h', - 'src/gpu/GrLayerCache.cpp', - 'src/gpu/GrLayerCache.h', - 'src/gpu/GrMemoryPool.cpp', - 'src/gpu/GrMemoryPool.h', - 'src/gpu/GrOrderedSet.h', - 'src/gpu/GrOvalRenderer.cpp', - 'src/gpu/GrOvalRenderer.h', - 'src/gpu/GrPaint.cpp', - 'src/gpu/GrPath.cpp', - 'src/gpu/GrPath.h', - 'src/gpu/GrPathRendererChain.cpp', - 'src/gpu/GrPathRenderer.cpp', - 'src/gpu/GrPathRenderer.h', - 'src/gpu/GrPathUtils.cpp', - 'src/gpu/GrPathUtils.h', - 'src/gpu/GrPictureUtils.h', - 'src/gpu/GrPictureUtils.cpp', - 'src/gpu/GrPlotMgr.h', - 'src/gpu/GrRectanizer.cpp', - 'src/gpu/GrRectanizer.h', - 'src/gpu/GrRectanizer_skyline.cpp', - 'src/gpu/GrRedBlackTree.h', - 'src/gpu/GrRenderTarget.cpp', - 'src/gpu/GrReducedClip.cpp', - 'src/gpu/GrReducedClip.h', - 'src/gpu/GrResource.cpp', - 'src/gpu/GrResourceCache.cpp', - 'src/gpu/GrResourceCache.h', - 'src/gpu/GrStencil.cpp', - 'src/gpu/GrStencil.h', - 'src/gpu/GrStencilAndCoverPathRenderer.cpp', - 'src/gpu/GrStencilAndCoverPathRenderer.h', - 'src/gpu/GrStencilBuffer.cpp', - 'src/gpu/GrStencilBuffer.h', - 'src/gpu/GrTBSearch.h', - 'src/gpu/GrTraceMarker.cpp', - 'src/gpu/GrTraceMarker.h', - 'src/gpu/GrTracing.h', - 'src/gpu/GrSWMaskHelper.cpp', - 'src/gpu/GrSWMaskHelper.h', - 'src/gpu/GrSoftwarePathRenderer.cpp', - 'src/gpu/GrSoftwarePathRenderer.h', - 'src/gpu/GrSurface.cpp', - 'src/gpu/GrTemplates.h', - 'src/gpu/GrTextContext.cpp', - 'src/gpu/GrTextContext.h', - 'src/gpu/GrTextStrike.cpp', - 'src/gpu/GrTextStrike.h', - 'src/gpu/GrTextStrike_impl.h', - 'src/gpu/GrTexture.cpp', - 'src/gpu/GrTextureAccess.cpp', - 'src/gpu/GrTHashTable.h', - 'src/gpu/GrVertexBuffer.h', + '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.cpp', + '<(skia_src_path)/gpu/GrAAHairLinePathRenderer.h', + '<(skia_src_path)/gpu/GrAAConvexPathRenderer.cpp', + '<(skia_src_path)/gpu/GrAAConvexPathRenderer.h', + '<(skia_src_path)/gpu/GrAARectRenderer.cpp', + '<(skia_src_path)/gpu/GrAARectRenderer.h', + '<(skia_src_path)/gpu/GrAddPathRenderers_default.cpp', + '<(skia_src_path)/gpu/GrAllocator.h', + '<(skia_src_path)/gpu/GrAllocPool.h', + '<(skia_src_path)/gpu/GrAllocPool.cpp', + '<(skia_src_path)/gpu/GrAtlas.cpp', + '<(skia_src_path)/gpu/GrAtlas.h', + '<(skia_src_path)/gpu/GrBinHashKey.h', + '<(skia_src_path)/gpu/GrBitmapTextContext.cpp', + '<(skia_src_path)/gpu/GrBitmapTextContext.h', + '<(skia_src_path)/gpu/GrBlend.cpp', + '<(skia_src_path)/gpu/GrBlend.h', + '<(skia_src_path)/gpu/GrBufferAllocPool.cpp', + '<(skia_src_path)/gpu/GrBufferAllocPool.h', + '<(skia_src_path)/gpu/GrCacheID.cpp', + '<(skia_src_path)/gpu/GrClipData.cpp', + '<(skia_src_path)/gpu/GrContext.cpp', + '<(skia_src_path)/gpu/GrDefaultPathRenderer.cpp', + '<(skia_src_path)/gpu/GrDefaultPathRenderer.h', + '<(skia_src_path)/gpu/GrDistanceFieldTextContext.h', + '<(skia_src_path)/gpu/GrDistanceFieldTextContext.cpp', + '<(skia_src_path)/gpu/GrDrawState.cpp', + '<(skia_src_path)/gpu/GrDrawState.h', + '<(skia_src_path)/gpu/GrDrawTarget.cpp', + '<(skia_src_path)/gpu/GrDrawTarget.h', + '<(skia_src_path)/gpu/GrDrawTargetCaps.h', + '<(skia_src_path)/gpu/GrEffect.cpp', + '<(skia_src_path)/gpu/GrGeometryBuffer.h', + '<(skia_src_path)/gpu/GrClipMaskCache.h', + '<(skia_src_path)/gpu/GrClipMaskCache.cpp', + '<(skia_src_path)/gpu/GrClipMaskManager.h', + '<(skia_src_path)/gpu/GrClipMaskManager.cpp', + '<(skia_src_path)/gpu/GrGpu.cpp', + '<(skia_src_path)/gpu/GrGpu.h', + '<(skia_src_path)/gpu/GrGpuFactory.cpp', + '<(skia_src_path)/gpu/GrIndexBuffer.h', + '<(skia_src_path)/gpu/GrInOrderDrawBuffer.cpp', + '<(skia_src_path)/gpu/GrInOrderDrawBuffer.h', + '<(skia_src_path)/gpu/GrLayerCache.cpp', + '<(skia_src_path)/gpu/GrLayerCache.h', + '<(skia_src_path)/gpu/GrMemoryPool.cpp', + '<(skia_src_path)/gpu/GrMemoryPool.h', + '<(skia_src_path)/gpu/GrOrderedSet.h', + '<(skia_src_path)/gpu/GrOvalRenderer.cpp', + '<(skia_src_path)/gpu/GrOvalRenderer.h', + '<(skia_src_path)/gpu/GrPaint.cpp', + '<(skia_src_path)/gpu/GrPath.cpp', + '<(skia_src_path)/gpu/GrPath.h', + '<(skia_src_path)/gpu/GrPathRendererChain.cpp', + '<(skia_src_path)/gpu/GrPathRenderer.cpp', + '<(skia_src_path)/gpu/GrPathRenderer.h', + '<(skia_src_path)/gpu/GrPathUtils.cpp', + '<(skia_src_path)/gpu/GrPathUtils.h', + '<(skia_src_path)/gpu/GrPictureUtils.h', + '<(skia_src_path)/gpu/GrPictureUtils.cpp', + '<(skia_src_path)/gpu/GrPlotMgr.h', + '<(skia_src_path)/gpu/GrRectanizer.cpp', + '<(skia_src_path)/gpu/GrRectanizer.h', + '<(skia_src_path)/gpu/GrRectanizer_skyline.cpp', + '<(skia_src_path)/gpu/GrRedBlackTree.h', + '<(skia_src_path)/gpu/GrRenderTarget.cpp', + '<(skia_src_path)/gpu/GrReducedClip.cpp', + '<(skia_src_path)/gpu/GrReducedClip.h', + '<(skia_src_path)/gpu/GrResource.cpp', + '<(skia_src_path)/gpu/GrResourceCache.cpp', + '<(skia_src_path)/gpu/GrResourceCache.h', + '<(skia_src_path)/gpu/GrStencil.cpp', + '<(skia_src_path)/gpu/GrStencil.h', + '<(skia_src_path)/gpu/GrStencilAndCoverPathRenderer.cpp', + '<(skia_src_path)/gpu/GrStencilAndCoverPathRenderer.h', + '<(skia_src_path)/gpu/GrStencilBuffer.cpp', + '<(skia_src_path)/gpu/GrStencilBuffer.h', + '<(skia_src_path)/gpu/GrTBSearch.h', + '<(skia_src_path)/gpu/GrTraceMarker.cpp', + '<(skia_src_path)/gpu/GrTraceMarker.h', + '<(skia_src_path)/gpu/GrTracing.h', + '<(skia_src_path)/gpu/GrSWMaskHelper.cpp', + '<(skia_src_path)/gpu/GrSWMaskHelper.h', + '<(skia_src_path)/gpu/GrSoftwarePathRenderer.cpp', + '<(skia_src_path)/gpu/GrSoftwarePathRenderer.h', + '<(skia_src_path)/gpu/GrSurface.cpp', + '<(skia_src_path)/gpu/GrTemplates.h', + '<(skia_src_path)/gpu/GrTextContext.cpp', + '<(skia_src_path)/gpu/GrTextContext.h', + '<(skia_src_path)/gpu/GrTextStrike.cpp', + '<(skia_src_path)/gpu/GrTextStrike.h', + '<(skia_src_path)/gpu/GrTextStrike_impl.h', + '<(skia_src_path)/gpu/GrTexture.cpp', + '<(skia_src_path)/gpu/GrTextureAccess.cpp', + '<(skia_src_path)/gpu/GrTHashTable.h', + '<(skia_src_path)/gpu/GrVertexBuffer.h', - 'src/gpu/effects/Gr1DKernelEffect.h', - 'src/gpu/effects/GrConfigConversionEffect.cpp', - 'src/gpu/effects/GrConfigConversionEffect.h', - 'src/gpu/effects/GrBezierEffect.cpp', - 'src/gpu/effects/GrBezierEffect.h', - 'src/gpu/effects/GrConvolutionEffect.cpp', - 'src/gpu/effects/GrConvolutionEffect.h', - 'src/gpu/effects/GrConvexPolyEffect.cpp', - 'src/gpu/effects/GrConvexPolyEffect.h', - 'src/gpu/effects/GrBicubicEffect.cpp', - 'src/gpu/effects/GrBicubicEffect.h', - 'src/gpu/effects/GrCustomCoordsTextureEffect.cpp', - 'src/gpu/effects/GrCustomCoordsTextureEffect.h', - 'src/gpu/effects/GrDistanceFieldTextureEffect.cpp', - 'src/gpu/effects/GrDistanceFieldTextureEffect.h', - 'src/gpu/effects/GrOvalEffect.cpp', - 'src/gpu/effects/GrOvalEffect.h', - 'src/gpu/effects/GrRRectEffect.cpp', - 'src/gpu/effects/GrRRectEffect.h', - 'src/gpu/effects/GrSimpleTextureEffect.cpp', - 'src/gpu/effects/GrSimpleTextureEffect.h', - 'src/gpu/effects/GrSingleTextureEffect.cpp', - 'src/gpu/effects/GrSingleTextureEffect.h', - 'src/gpu/effects/GrTextureDomain.cpp', - 'src/gpu/effects/GrTextureDomain.h', - 'src/gpu/effects/GrTextureStripAtlas.cpp', - 'src/gpu/effects/GrTextureStripAtlas.h', + '<(skia_src_path)/gpu/effects/Gr1DKernelEffect.h', + '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.cpp', + '<(skia_src_path)/gpu/effects/GrConfigConversionEffect.h', + '<(skia_src_path)/gpu/effects/GrBezierEffect.cpp', + '<(skia_src_path)/gpu/effects/GrBezierEffect.h', + '<(skia_src_path)/gpu/effects/GrConvolutionEffect.cpp', + '<(skia_src_path)/gpu/effects/GrConvolutionEffect.h', + '<(skia_src_path)/gpu/effects/GrConvexPolyEffect.cpp', + '<(skia_src_path)/gpu/effects/GrConvexPolyEffect.h', + '<(skia_src_path)/gpu/effects/GrBicubicEffect.cpp', + '<(skia_src_path)/gpu/effects/GrBicubicEffect.h', + '<(skia_src_path)/gpu/effects/GrCustomCoordsTextureEffect.cpp', + '<(skia_src_path)/gpu/effects/GrCustomCoordsTextureEffect.h', + '<(skia_src_path)/gpu/effects/GrDistanceFieldTextureEffect.cpp', + '<(skia_src_path)/gpu/effects/GrDistanceFieldTextureEffect.h', + '<(skia_src_path)/gpu/effects/GrOvalEffect.cpp', + '<(skia_src_path)/gpu/effects/GrOvalEffect.h', + '<(skia_src_path)/gpu/effects/GrRRectEffect.cpp', + '<(skia_src_path)/gpu/effects/GrRRectEffect.h', + '<(skia_src_path)/gpu/effects/GrSimpleTextureEffect.cpp', + '<(skia_src_path)/gpu/effects/GrSimpleTextureEffect.h', + '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.cpp', + '<(skia_src_path)/gpu/effects/GrSingleTextureEffect.h', + '<(skia_src_path)/gpu/effects/GrTextureDomain.cpp', + '<(skia_src_path)/gpu/effects/GrTextureDomain.h', + '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.cpp', + '<(skia_src_path)/gpu/effects/GrTextureStripAtlas.h', - 'src/gpu/gl/GrGLBufferImpl.cpp', - 'src/gpu/gl/GrGLBufferImpl.h', - 'src/gpu/gl/GrGLCaps.cpp', - 'src/gpu/gl/GrGLCaps.h', - 'src/gpu/gl/GrGLContext.cpp', - 'src/gpu/gl/GrGLContext.h', - 'src/gpu/gl/GrGLCreateNativeInterface_none.cpp', - 'src/gpu/gl/GrGLDefaultInterface_none.cpp', - 'src/gpu/gl/GrGLDefines.h', - 'src/gpu/gl/GrGLEffect.h', - 'src/gpu/gl/GrGLVertexEffect.h', - 'src/gpu/gl/GrGLExtensions.cpp', - 'src/gpu/gl/GrGLIndexBuffer.cpp', - 'src/gpu/gl/GrGLIndexBuffer.h', - 'src/gpu/gl/GrGLInterface.cpp', - 'src/gpu/gl/GrGLIRect.h', - 'src/gpu/gl/GrGLNoOpInterface.cpp', - 'src/gpu/gl/GrGLNoOpInterface.h', - 'src/gpu/gl/GrGLPath.cpp', - 'src/gpu/gl/GrGLPath.h', - 'src/gpu/gl/GrGLProgram.cpp', - 'src/gpu/gl/GrGLProgram.h', - 'src/gpu/gl/GrGLProgramDesc.cpp', - 'src/gpu/gl/GrGLProgramDesc.h', - 'src/gpu/gl/GrGLProgramEffects.cpp', - 'src/gpu/gl/GrGLProgramEffects.h', - 'src/gpu/gl/GrGLRenderTarget.cpp', - 'src/gpu/gl/GrGLRenderTarget.h', - 'src/gpu/gl/GrGLShaderBuilder.cpp', - 'src/gpu/gl/GrGLShaderBuilder.h', - 'src/gpu/gl/GrGLShaderVar.h', - 'src/gpu/gl/GrGLSL.cpp', - 'src/gpu/gl/GrGLSL.h', - 'src/gpu/gl/GrGLSL_impl.h', - 'src/gpu/gl/GrGLStencilBuffer.cpp', - 'src/gpu/gl/GrGLStencilBuffer.h', - 'src/gpu/gl/GrGLTexture.cpp', - 'src/gpu/gl/GrGLTexture.h', - 'src/gpu/gl/GrGLUtil.cpp', - 'src/gpu/gl/GrGLUtil.h', - 'src/gpu/gl/GrGLUniformManager.cpp', - 'src/gpu/gl/GrGLUniformManager.h', - 'src/gpu/gl/GrGLUniformHandle.h', - 'src/gpu/gl/GrGLVertexArray.cpp', - 'src/gpu/gl/GrGLVertexArray.h', - 'src/gpu/gl/GrGLVertexBuffer.cpp', - 'src/gpu/gl/GrGLVertexBuffer.h', - 'src/gpu/gl/GrGpuGL.cpp', - 'src/gpu/gl/GrGpuGL.h', - 'src/gpu/gl/GrGpuGL_program.cpp', + '<(skia_src_path)/gpu/gl/GrGLBufferImpl.cpp', + '<(skia_src_path)/gpu/gl/GrGLBufferImpl.h', + '<(skia_src_path)/gpu/gl/GrGLCaps.cpp', + '<(skia_src_path)/gpu/gl/GrGLCaps.h', + '<(skia_src_path)/gpu/gl/GrGLContext.cpp', + '<(skia_src_path)/gpu/gl/GrGLContext.h', + '<(skia_src_path)/gpu/gl/GrGLCreateNativeInterface_none.cpp', + '<(skia_src_path)/gpu/gl/GrGLDefaultInterface_none.cpp', + '<(skia_src_path)/gpu/gl/GrGLDefines.h', + '<(skia_src_path)/gpu/gl/GrGLEffect.h', + '<(skia_src_path)/gpu/gl/GrGLVertexEffect.h', + '<(skia_src_path)/gpu/gl/GrGLExtensions.cpp', + '<(skia_src_path)/gpu/gl/GrGLIndexBuffer.cpp', + '<(skia_src_path)/gpu/gl/GrGLIndexBuffer.h', + '<(skia_src_path)/gpu/gl/GrGLInterface.cpp', + '<(skia_src_path)/gpu/gl/GrGLIRect.h', + '<(skia_src_path)/gpu/gl/GrGLNoOpInterface.cpp', + '<(skia_src_path)/gpu/gl/GrGLNoOpInterface.h', + '<(skia_src_path)/gpu/gl/GrGLPath.cpp', + '<(skia_src_path)/gpu/gl/GrGLPath.h', + '<(skia_src_path)/gpu/gl/GrGLProgram.cpp', + '<(skia_src_path)/gpu/gl/GrGLProgram.h', + '<(skia_src_path)/gpu/gl/GrGLProgramDesc.cpp', + '<(skia_src_path)/gpu/gl/GrGLProgramDesc.h', + '<(skia_src_path)/gpu/gl/GrGLProgramEffects.cpp', + '<(skia_src_path)/gpu/gl/GrGLProgramEffects.h', + '<(skia_src_path)/gpu/gl/GrGLRenderTarget.cpp', + '<(skia_src_path)/gpu/gl/GrGLRenderTarget.h', + '<(skia_src_path)/gpu/gl/GrGLShaderBuilder.cpp', + '<(skia_src_path)/gpu/gl/GrGLShaderBuilder.h', + '<(skia_src_path)/gpu/gl/GrGLShaderVar.h', + '<(skia_src_path)/gpu/gl/GrGLSL.cpp', + '<(skia_src_path)/gpu/gl/GrGLSL.h', + '<(skia_src_path)/gpu/gl/GrGLSL_impl.h', + '<(skia_src_path)/gpu/gl/GrGLStencilBuffer.cpp', + '<(skia_src_path)/gpu/gl/GrGLStencilBuffer.h', + '<(skia_src_path)/gpu/gl/GrGLTexture.cpp', + '<(skia_src_path)/gpu/gl/GrGLTexture.h', + '<(skia_src_path)/gpu/gl/GrGLUtil.cpp', + '<(skia_src_path)/gpu/gl/GrGLUtil.h', + '<(skia_src_path)/gpu/gl/GrGLUniformManager.cpp', + '<(skia_src_path)/gpu/gl/GrGLUniformManager.h', + '<(skia_src_path)/gpu/gl/GrGLUniformHandle.h', + '<(skia_src_path)/gpu/gl/GrGLVertexArray.cpp', + '<(skia_src_path)/gpu/gl/GrGLVertexArray.h', + '<(skia_src_path)/gpu/gl/GrGLVertexBuffer.cpp', + '<(skia_src_path)/gpu/gl/GrGLVertexBuffer.h', + '<(skia_src_path)/gpu/gl/GrGpuGL.cpp', + '<(skia_src_path)/gpu/gl/GrGpuGL.h', + '<(skia_src_path)/gpu/gl/GrGpuGL_program.cpp', # Sk files - 'include/gpu/SkGpuDevice.h', - 'include/gpu/SkGr.h', - 'include/gpu/SkGrPixelRef.h', - 'include/gpu/SkGrTexturePixelRef.h', + '<(skia_include_path)/gpu/SkGpuDevice.h', + '<(skia_include_path)/gpu/SkGr.h', + '<(skia_include_path)/gpu/SkGrPixelRef.h', + '<(skia_include_path)/gpu/SkGrTexturePixelRef.h', - 'include/gpu/gl/SkGLContextHelper.h', + '<(skia_include_path)/gpu/gl/SkGLContextHelper.h', - 'src/gpu/SkGpuDevice.cpp', - 'src/gpu/SkGr.cpp', - 'src/gpu/SkGrFontScaler.cpp', - 'src/gpu/SkGrPixelRef.cpp', - 'src/gpu/SkGrTexturePixelRef.cpp', + '<(skia_src_path)/gpu/SkGpuDevice.cpp', + '<(skia_src_path)/gpu/SkGr.cpp', + '<(skia_src_path)/gpu/SkGrFontScaler.cpp', + '<(skia_src_path)/gpu/SkGrPixelRef.cpp', + '<(skia_src_path)/gpu/SkGrTexturePixelRef.cpp', - 'src/image/SkImage_Gpu.cpp', - 'src/image/SkSurface_Gpu.cpp', + '<(skia_src_path)/image/SkImage_Gpu.cpp', + '<(skia_src_path)/image/SkSurface_Gpu.cpp', - 'src/gpu/gl/SkGLContextHelper.cpp' + '<(skia_src_path)/gpu/gl/SkGLContextHelper.cpp' ], 'skia_core_sources': [ - 'src/core/ARGB32_Clamp_Bilinear_BitmapShader.h', - 'src/core/SkAAClip.cpp', - 'src/core/SkAnnotation.cpp', - 'src/core/SkAdvancedTypefaceMetrics.cpp', - 'src/core/SkAlphaRuns.cpp', - 'src/core/SkAntiRun.h', - 'src/core/SkBBoxHierarchy.h', - 'src/core/SkBBoxRecord.cpp', - 'src/core/SkBBoxRecord.h', - 'src/core/SkBBoxHierarchyRecord.cpp', - 'src/core/SkBBoxHierarchyRecord.h', - 'src/core/SkBitmap.cpp', - 'src/core/SkBitmapDevice.cpp', - 'src/core/SkBitmapFilter.h', - 'src/core/SkBitmapFilter.cpp', - 'src/core/SkBitmapHeap.cpp', - 'src/core/SkBitmapHeap.h', - 'src/core/SkBitmapProcShader.cpp', - 'src/core/SkBitmapProcShader.h', - 'src/core/SkBitmapProcState.cpp', - 'src/core/SkBitmapProcState.h', - 'src/core/SkBitmapProcState_matrix.h', - 'src/core/SkBitmapProcState_matrixProcs.cpp', - 'src/core/SkBitmapProcState_sample.h', - 'src/core/SkBitmapScaler.h', - 'src/core/SkBitmapScaler.cpp', - 'src/core/SkBitmapShader16BilerpTemplate.h', - 'src/core/SkBitmapShaderTemplate.h', - 'src/core/SkBitmap_scroll.cpp', - 'src/core/SkBlitBWMaskTemplate.h', - 'src/core/SkBlitMask_D32.cpp', - 'src/core/SkBlitRow_D16.cpp', - 'src/core/SkBlitRow_D32.cpp', - 'src/core/SkBlitter.h', - 'src/core/SkBlitter.cpp', - 'src/core/SkBlitter_A8.cpp', - 'src/core/SkBlitter_ARGB32.cpp', - 'src/core/SkBlitter_RGB16.cpp', - 'src/core/SkBlitter_Sprite.cpp', - 'src/core/SkBuffer.cpp', - 'src/core/SkCanvas.cpp', - 'src/core/SkChunkAlloc.cpp', - 'src/core/SkClipStack.cpp', - 'src/core/SkColor.cpp', - 'src/core/SkColorFilter.cpp', - 'src/core/SkColorTable.cpp', - 'src/core/SkComposeShader.cpp', - 'src/core/SkConfig8888.cpp', - 'src/core/SkConfig8888.h', - 'src/core/SkConvolver.cpp', - 'src/core/SkConvolver.h', - 'src/core/SkCoreBlitters.h', - 'src/core/SkCubicClipper.cpp', - 'src/core/SkCubicClipper.h', - 'src/core/SkData.cpp', - 'src/core/SkDataTable.cpp', - 'src/core/SkDebug.cpp', - 'src/core/SkDeque.cpp', - 'src/core/SkDevice.cpp', - 'src/core/SkDeviceLooper.cpp', - 'src/core/SkDeviceProfile.cpp', - 'src/lazy/SkDiscardableMemoryPool.cpp', - 'src/lazy/SkDiscardablePixelRef.cpp', - 'src/core/SkDistanceFieldGen.cpp', - 'src/core/SkDistanceFieldGen.h', - 'src/core/SkDither.cpp', - 'src/core/SkDraw.cpp', - 'src/core/SkDrawLooper.cpp', - 'src/core/SkDrawProcs.h', - 'src/core/SkEdgeBuilder.cpp', - 'src/core/SkEdgeClipper.cpp', - 'src/core/SkEdge.cpp', - 'src/core/SkEdge.h', - 'src/core/SkError.cpp', - 'src/core/SkErrorInternals.h', - 'src/core/SkFilterProc.cpp', - 'src/core/SkFilterProc.h', - 'src/core/SkFilterShader.cpp', - 'src/core/SkFlattenable.cpp', - 'src/core/SkFlattenableSerialization.cpp', - 'src/core/SkFloat.cpp', - 'src/core/SkFloat.h', - 'src/core/SkFloatBits.cpp', - 'src/core/SkFontHost.cpp', - 'src/core/SkFontDescriptor.cpp', - 'src/core/SkFontDescriptor.h', - 'src/core/SkFontStream.cpp', - 'src/core/SkFontStream.h', - 'src/core/SkGeometry.cpp', - 'src/core/SkGlyphCache.cpp', - 'src/core/SkGlyphCache.h', - 'src/core/SkGlyphCache_Globals.h', - 'src/core/SkGraphics.cpp', - 'src/core/SkInstCnt.cpp', - 'src/core/SkImageFilter.cpp', - 'src/core/SkImageInfo.cpp', - 'src/core/SkLineClipper.cpp', - 'src/core/SkMallocPixelRef.cpp', - 'src/core/SkMask.cpp', - 'src/core/SkMaskFilter.cpp', - 'src/core/SkMaskGamma.cpp', - 'src/core/SkMaskGamma.h', - 'src/core/SkMath.cpp', - 'src/core/SkMatrix.cpp', - 'src/core/SkMatrixClipStateMgr.cpp', - 'src/core/SkMatrixClipStateMgr.h', - 'src/core/SkMessageBus.h', - 'src/core/SkMetaData.cpp', - 'src/core/SkMipMap.cpp', - 'src/core/SkOffsetTable.h', - 'src/core/SkPackBits.cpp', - 'src/core/SkPaint.cpp', - 'src/core/SkPaintOptionsAndroid.cpp', - 'src/core/SkPaintPriv.cpp', - 'src/core/SkPaintPriv.h', - 'src/core/SkPath.cpp', - 'src/core/SkPathEffect.cpp', - 'src/core/SkPathHeap.cpp', - 'src/core/SkPathHeap.h', - 'src/core/SkPathMeasure.cpp', - 'src/core/SkPathRef.cpp', - 'src/core/SkPicture.cpp', - 'src/core/SkPictureFlat.cpp', - 'src/core/SkPictureFlat.h', - 'src/core/SkPicturePlayback.cpp', - 'src/core/SkPicturePlayback.h', - 'src/core/SkPictureRecord.cpp', - 'src/core/SkPictureRecord.h', - 'src/core/SkPictureShader.cpp', - 'src/core/SkPictureShader.h', - 'src/core/SkPictureStateTree.cpp', - 'src/core/SkPictureStateTree.h', - 'src/core/SkPixelRef.cpp', - 'src/core/SkPoint.cpp', - 'src/core/SkProcSpriteBlitter.cpp', - 'src/core/SkPtrRecorder.cpp', - 'src/core/SkQuadClipper.cpp', - 'src/core/SkQuadClipper.h', - 'src/core/SkQuadTree.cpp', - 'src/core/SkQuadTree.h', - 'src/core/SkQuadTreePicture.cpp', - 'src/core/SkQuadTreePicture.h', - 'src/core/SkRasterClip.cpp', - 'src/core/SkRasterizer.cpp', - 'src/core/SkReadBuffer.cpp', - 'src/core/SkRect.cpp', - 'src/core/SkRefDict.cpp', - 'src/core/SkRegion.cpp', - 'src/core/SkRegionPriv.h', - 'src/core/SkRegion_path.cpp', - 'src/core/SkRRect.cpp', - 'src/core/SkRTree.h', - 'src/core/SkRTree.cpp', - 'src/core/SkScaledImageCache.cpp', - 'src/core/SkScalar.cpp', - 'src/core/SkScalerContext.cpp', - 'src/core/SkScalerContext.h', - 'src/core/SkScan.cpp', - 'src/core/SkScan.h', - 'src/core/SkScanPriv.h', - 'src/core/SkScan_AntiPath.cpp', - 'src/core/SkScan_Antihair.cpp', - 'src/core/SkScan_Hairline.cpp', - 'src/core/SkScan_Path.cpp', - 'src/core/SkShader.cpp', - 'src/core/SkSpriteBlitter_ARGB32.cpp', - 'src/core/SkSpriteBlitter_RGB16.cpp', - 'src/core/SkSinTable.h', - 'src/core/SkSpriteBlitter.h', - 'src/core/SkSpriteBlitterTemplate.h', - 'src/core/SkStream.cpp', - 'src/core/SkString.cpp', - 'src/core/SkStringUtils.cpp', - 'src/core/SkStroke.h', - 'src/core/SkStroke.cpp', - 'src/core/SkStrokeRec.cpp', - 'src/core/SkStrokerPriv.cpp', - 'src/core/SkStrokerPriv.h', - 'src/core/SkTextFormatParams.h', - 'src/core/SkTileGrid.cpp', - 'src/core/SkTileGrid.h', - 'src/core/SkTileGridPicture.cpp', - 'src/core/SkTLList.h', - 'src/core/SkTLS.cpp', - 'src/core/SkTraceEvent.h', - 'src/core/SkTSearch.cpp', - 'src/core/SkTSort.h', - 'src/core/SkTypeface.cpp', - 'src/core/SkTypefaceCache.cpp', - 'src/core/SkTypefaceCache.h', - 'src/core/SkUnPreMultiply.cpp', - 'src/core/SkUtils.cpp', - 'src/core/SkValidatingReadBuffer.cpp', - 'src/core/SkWriteBuffer.cpp', - 'src/core/SkWriter32.cpp', - 'src/core/SkXfermode.cpp', - 'src/doc/SkDocument.cpp', - 'src/image/SkImage.cpp', - 'src/image/SkImagePriv.cpp', - 'src/image/SkImage_Codec.cpp', - 'src/image/SkImage_Picture.cpp', - 'src/image/SkImage_Raster.cpp', - 'src/image/SkSurface.cpp', - 'src/image/SkSurface_Base.h', - 'src/image/SkSurface_Picture.cpp', - 'src/image/SkSurface_Raster.cpp', - 'src/pipe/SkGPipeRead.cpp', - 'src/pipe/SkGPipeWrite.cpp', - 'include/core/SkAdvancedTypefaceMetrics.h', - 'include/core/SkBitmap.h', - 'include/core/SkBitmapDevice.h', - 'include/core/SkBlitRow.h', - 'include/core/SkBounder.h', - 'include/core/SkCanvas.h', - 'include/core/SkChecksum.h', - 'include/core/SkChunkAlloc.h', - 'include/core/SkClipStack.h', - 'include/core/SkColor.h', - 'include/core/SkColorFilter.h', - 'include/core/SkColorPriv.h', - 'include/core/SkColorShader.h', - 'include/core/SkComposeShader.h', - 'include/core/SkData.h', - 'include/core/SkDeque.h', - 'include/core/SkDevice.h', - 'include/core/SkDeviceProperties.h', - 'include/core/SkDither.h', - 'include/core/SkDraw.h', - 'include/core/SkDrawFilter.h', - 'include/core/SkDrawLooper.h', - 'include/core/SkEndian.h', - 'include/core/SkError.h', - 'include/core/SkFixed.h', - 'include/core/SkFlattenable.h', - 'include/core/SkFlattenableSerialization.h', - 'include/core/SkFloatBits.h', - 'include/core/SkFloatingPoint.h', - 'include/core/SkFontHost.h', - 'include/core/SkGeometry.h', - 'include/core/SkGraphics.h', - 'include/core/SkImage.h', - 'include/core/SkImageDecoder.h', - 'include/core/SkImageEncoder.h', - 'include/core/SkImageFilter.h', - 'include/core/SkImageInfo.h', - 'include/core/SkInstCnt.h', - 'include/core/SkMallocPixelRef.h', - 'include/core/SkMask.h', - 'include/core/SkMaskFilter.h', - 'include/core/SkMath.h', - 'include/core/SkMatrix.h', - 'include/core/SkMetaData.h', - 'include/core/SkOnce.h', - 'include/core/SkOSFile.h', - 'include/core/SkPackBits.h', - 'include/core/SkPaint.h', - 'include/core/SkPath.h', - 'include/core/SkPathEffect.h', - 'include/core/SkPathMeasure.h', - 'include/core/SkPathRef.h', - 'include/core/SkPicture.h', - 'include/core/SkPixelRef.h', - 'include/core/SkPoint.h', - 'include/core/SkPreConfig.h', - 'include/core/SkRasterizer.h', - 'include/core/SkReader32.h', - 'include/core/SkRect.h', - 'include/core/SkRefCnt.h', - 'include/core/SkRegion.h', - 'include/core/SkRRect.h', - 'include/core/SkScalar.h', - 'include/core/SkShader.h', - 'include/core/SkStream.h', - 'include/core/SkString.h', - 'include/core/SkStringUtils.h', - 'include/core/SkStrokeRec.h', - 'include/core/SkSurface.h', - 'include/core/SkTArray.h', - 'include/core/SkTDArray.h', - 'include/core/SkTDStack.h', - 'include/core/SkTDict.h', - 'include/core/SkTInternalLList.h', - 'include/core/SkTileGridPicture.h', - 'include/core/SkTRegistry.h', - 'include/core/SkTSearch.h', - 'include/core/SkTemplates.h', - 'include/core/SkThread.h', - 'include/core/SkTime.h', - 'include/core/SkTLazy.h', - 'include/core/SkTypeface.h', - 'include/core/SkTypes.h', - 'include/core/SkUnPreMultiply.h', - 'include/core/SkUnitMapper.h', - 'include/core/SkUtils.h', - 'include/core/SkWeakRefCnt.h', - 'include/core/SkWriter32.h', - 'include/core/SkXfermode.h', - 'src/lazy/SkCachingPixelRef.cpp', - 'src/lazy/SkCachingPixelRef.h', - 'include/pathops/SkPathOps.h', - 'src/pathops/SkAddIntersections.cpp', - 'src/pathops/SkDCubicIntersection.cpp', - 'src/pathops/SkDCubicLineIntersection.cpp', - 'src/pathops/SkDCubicToQuads.cpp', - 'src/pathops/SkDLineIntersection.cpp', - 'src/pathops/SkDQuadImplicit.cpp', - 'src/pathops/SkDQuadIntersection.cpp', - 'src/pathops/SkDQuadLineIntersection.cpp', - 'src/pathops/SkIntersections.cpp', - 'src/pathops/SkOpAngle.cpp', - 'src/pathops/SkOpContour.cpp', - 'src/pathops/SkOpEdgeBuilder.cpp', - 'src/pathops/SkOpSegment.cpp', - 'src/pathops/SkPathOpsBounds.cpp', - 'src/pathops/SkPathOpsCommon.cpp', - 'src/pathops/SkPathOpsCubic.cpp', - 'src/pathops/SkPathOpsDebug.cpp', - 'src/pathops/SkPathOpsLine.cpp', - 'src/pathops/SkPathOpsOp.cpp', - 'src/pathops/SkPathOpsPoint.cpp', - 'src/pathops/SkPathOpsQuad.cpp', - 'src/pathops/SkPathOpsRect.cpp', - 'src/pathops/SkPathOpsSimplify.cpp', - 'src/pathops/SkPathOpsTriangle.cpp', - 'src/pathops/SkPathOpsTypes.cpp', - 'src/pathops/SkPathWriter.cpp', - 'src/pathops/SkQuarticRoot.cpp', - 'src/pathops/SkReduceOrder.cpp', - 'src/pathops/SkAddIntersections.h', - 'src/pathops/SkDQuadImplicit.h', - 'src/pathops/SkIntersectionHelper.h', - 'src/pathops/SkIntersections.h', - 'src/pathops/SkLineParameters.h', - 'src/pathops/SkOpAngle.h', - 'src/pathops/SkOpContour.h', - 'src/pathops/SkOpEdgeBuilder.h', - 'src/pathops/SkOpSegment.h', - 'src/pathops/SkOpSpan.h', - 'src/pathops/SkPathOpsBounds.h', - 'src/pathops/SkPathOpsCommon.h', - 'src/pathops/SkPathOpsCubic.h', - 'src/pathops/SkPathOpsCurve.h', - 'src/pathops/SkPathOpsDebug.h', - 'src/pathops/SkPathOpsLine.h', - 'src/pathops/SkPathOpsPoint.h', - 'src/pathops/SkPathOpsQuad.h', - 'src/pathops/SkPathOpsRect.h', - 'src/pathops/SkPathOpsTriangle.h', - 'src/pathops/SkPathOpsTypes.h', - 'src/pathops/SkPathWriter.h', - 'src/pathops/SkQuarticRoot.h', - 'src/pathops/SkReduceOrder.h', + '<(skia_src_path)/core/ARGB32_Clamp_Bilinear_BitmapShader.h', + '<(skia_src_path)/core/SkAAClip.cpp', + '<(skia_src_path)/core/SkAnnotation.cpp', + '<(skia_src_path)/core/SkAdvancedTypefaceMetrics.cpp', + '<(skia_src_path)/core/SkAlphaRuns.cpp', + '<(skia_src_path)/core/SkAntiRun.h', + '<(skia_src_path)/core/SkBBoxHierarchy.h', + '<(skia_src_path)/core/SkBBoxRecord.cpp', + '<(skia_src_path)/core/SkBBoxRecord.h', + '<(skia_src_path)/core/SkBBoxHierarchyRecord.cpp', + '<(skia_src_path)/core/SkBBoxHierarchyRecord.h', + '<(skia_src_path)/core/SkBitmap.cpp', + '<(skia_src_path)/core/SkBitmapDevice.cpp', + '<(skia_src_path)/core/SkBitmapFilter.h', + '<(skia_src_path)/core/SkBitmapFilter.cpp', + '<(skia_src_path)/core/SkBitmapHeap.cpp', + '<(skia_src_path)/core/SkBitmapHeap.h', + '<(skia_src_path)/core/SkBitmapProcShader.cpp', + '<(skia_src_path)/core/SkBitmapProcShader.h', + '<(skia_src_path)/core/SkBitmapProcState.cpp', + '<(skia_src_path)/core/SkBitmapProcState.h', + '<(skia_src_path)/core/SkBitmapProcState_matrix.h', + '<(skia_src_path)/core/SkBitmapProcState_matrixProcs.cpp', + '<(skia_src_path)/core/SkBitmapProcState_sample.h', + '<(skia_src_path)/core/SkBitmapScaler.h', + '<(skia_src_path)/core/SkBitmapScaler.cpp', + '<(skia_src_path)/core/SkBitmapShader16BilerpTemplate.h', + '<(skia_src_path)/core/SkBitmapShaderTemplate.h', + '<(skia_src_path)/core/SkBitmap_scroll.cpp', + '<(skia_src_path)/core/SkBlitBWMaskTemplate.h', + '<(skia_src_path)/core/SkBlitMask_D32.cpp', + '<(skia_src_path)/core/SkBlitRow_D16.cpp', + '<(skia_src_path)/core/SkBlitRow_D32.cpp', + '<(skia_src_path)/core/SkBlitter.h', + '<(skia_src_path)/core/SkBlitter.cpp', + '<(skia_src_path)/core/SkBlitter_A8.cpp', + '<(skia_src_path)/core/SkBlitter_ARGB32.cpp', + '<(skia_src_path)/core/SkBlitter_RGB16.cpp', + '<(skia_src_path)/core/SkBlitter_Sprite.cpp', + '<(skia_src_path)/core/SkBuffer.cpp', + '<(skia_src_path)/core/SkCanvas.cpp', + '<(skia_src_path)/core/SkChunkAlloc.cpp', + '<(skia_src_path)/core/SkClipStack.cpp', + '<(skia_src_path)/core/SkColor.cpp', + '<(skia_src_path)/core/SkColorFilter.cpp', + '<(skia_src_path)/core/SkColorTable.cpp', + '<(skia_src_path)/core/SkComposeShader.cpp', + '<(skia_src_path)/core/SkConfig8888.cpp', + '<(skia_src_path)/core/SkConfig8888.h', + '<(skia_src_path)/core/SkConvolver.cpp', + '<(skia_src_path)/core/SkConvolver.h', + '<(skia_src_path)/core/SkCoreBlitters.h', + '<(skia_src_path)/core/SkCubicClipper.cpp', + '<(skia_src_path)/core/SkCubicClipper.h', + '<(skia_src_path)/core/SkData.cpp', + '<(skia_src_path)/core/SkDataTable.cpp', + '<(skia_src_path)/core/SkDebug.cpp', + '<(skia_src_path)/core/SkDeque.cpp', + '<(skia_src_path)/core/SkDevice.cpp', + '<(skia_src_path)/core/SkDeviceLooper.cpp', + '<(skia_src_path)/core/SkDeviceProfile.cpp', + '<(skia_src_path)/lazy/SkDiscardableMemoryPool.cpp', + '<(skia_src_path)/lazy/SkDiscardablePixelRef.cpp', + '<(skia_src_path)/core/SkDistanceFieldGen.cpp', + '<(skia_src_path)/core/SkDistanceFieldGen.h', + '<(skia_src_path)/core/SkDither.cpp', + '<(skia_src_path)/core/SkDraw.cpp', + '<(skia_src_path)/core/SkDrawLooper.cpp', + '<(skia_src_path)/core/SkDrawProcs.h', + '<(skia_src_path)/core/SkEdgeBuilder.cpp', + '<(skia_src_path)/core/SkEdgeClipper.cpp', + '<(skia_src_path)/core/SkEdge.cpp', + '<(skia_src_path)/core/SkEdge.h', + '<(skia_src_path)/core/SkError.cpp', + '<(skia_src_path)/core/SkErrorInternals.h', + '<(skia_src_path)/core/SkFilterProc.cpp', + '<(skia_src_path)/core/SkFilterProc.h', + '<(skia_src_path)/core/SkFilterShader.cpp', + '<(skia_src_path)/core/SkFlattenable.cpp', + '<(skia_src_path)/core/SkFlattenableSerialization.cpp', + '<(skia_src_path)/core/SkFloat.cpp', + '<(skia_src_path)/core/SkFloat.h', + '<(skia_src_path)/core/SkFloatBits.cpp', + '<(skia_src_path)/core/SkFontHost.cpp', + '<(skia_src_path)/core/SkFontDescriptor.cpp', + '<(skia_src_path)/core/SkFontDescriptor.h', + '<(skia_src_path)/core/SkFontStream.cpp', + '<(skia_src_path)/core/SkFontStream.h', + '<(skia_src_path)/core/SkGeometry.cpp', + '<(skia_src_path)/core/SkGlyphCache.cpp', + '<(skia_src_path)/core/SkGlyphCache.h', + '<(skia_src_path)/core/SkGlyphCache_Globals.h', + '<(skia_src_path)/core/SkGraphics.cpp', + '<(skia_src_path)/core/SkInstCnt.cpp', + '<(skia_src_path)/core/SkImageFilter.cpp', + '<(skia_src_path)/core/SkImageInfo.cpp', + '<(skia_src_path)/core/SkLineClipper.cpp', + '<(skia_src_path)/core/SkMallocPixelRef.cpp', + '<(skia_src_path)/core/SkMask.cpp', + '<(skia_src_path)/core/SkMaskFilter.cpp', + '<(skia_src_path)/core/SkMaskGamma.cpp', + '<(skia_src_path)/core/SkMaskGamma.h', + '<(skia_src_path)/core/SkMath.cpp', + '<(skia_src_path)/core/SkMatrix.cpp', + '<(skia_src_path)/core/SkMatrixClipStateMgr.cpp', + '<(skia_src_path)/core/SkMatrixClipStateMgr.h', + '<(skia_src_path)/core/SkMessageBus.h', + '<(skia_src_path)/core/SkMetaData.cpp', + '<(skia_src_path)/core/SkMipMap.cpp', + '<(skia_src_path)/core/SkOffsetTable.h', + '<(skia_src_path)/core/SkPackBits.cpp', + '<(skia_src_path)/core/SkPaint.cpp', + '<(skia_src_path)/core/SkPaintOptionsAndroid.cpp', + '<(skia_src_path)/core/SkPaintPriv.cpp', + '<(skia_src_path)/core/SkPaintPriv.h', + '<(skia_src_path)/core/SkPath.cpp', + '<(skia_src_path)/core/SkPathEffect.cpp', + '<(skia_src_path)/core/SkPathHeap.cpp', + '<(skia_src_path)/core/SkPathHeap.h', + '<(skia_src_path)/core/SkPathMeasure.cpp', + '<(skia_src_path)/core/SkPathRef.cpp', + '<(skia_src_path)/core/SkPicture.cpp', + '<(skia_src_path)/core/SkPictureFlat.cpp', + '<(skia_src_path)/core/SkPictureFlat.h', + '<(skia_src_path)/core/SkPicturePlayback.cpp', + '<(skia_src_path)/core/SkPicturePlayback.h', + '<(skia_src_path)/core/SkPictureRecord.cpp', + '<(skia_src_path)/core/SkPictureRecord.h', + '<(skia_src_path)/core/SkPictureStateTree.cpp', + '<(skia_src_path)/core/SkPictureStateTree.h', + '<(skia_src_path)/core/SkPixelRef.cpp', + '<(skia_src_path)/core/SkPoint.cpp', + '<(skia_src_path)/core/SkProcSpriteBlitter.cpp', + '<(skia_src_path)/core/SkPtrRecorder.cpp', + '<(skia_src_path)/core/SkQuadClipper.cpp', + '<(skia_src_path)/core/SkQuadClipper.h', + '<(skia_src_path)/core/SkQuadTree.cpp', + '<(skia_src_path)/core/SkQuadTree.h', + '<(skia_src_path)/core/SkQuadTreePicture.cpp', + '<(skia_src_path)/core/SkQuadTreePicture.h', + '<(skia_src_path)/core/SkRasterClip.cpp', + '<(skia_src_path)/core/SkRasterizer.cpp', + '<(skia_src_path)/core/SkReadBuffer.cpp', + '<(skia_src_path)/core/SkRect.cpp', + '<(skia_src_path)/core/SkRefDict.cpp', + '<(skia_src_path)/core/SkRegion.cpp', + '<(skia_src_path)/core/SkRegionPriv.h', + '<(skia_src_path)/core/SkRegion_path.cpp', + '<(skia_src_path)/core/SkRRect.cpp', + '<(skia_src_path)/core/SkRTree.h', + '<(skia_src_path)/core/SkRTree.cpp', + '<(skia_src_path)/core/SkScaledImageCache.cpp', + '<(skia_src_path)/core/SkScalar.cpp', + '<(skia_src_path)/core/SkScalerContext.cpp', + '<(skia_src_path)/core/SkScalerContext.h', + '<(skia_src_path)/core/SkScan.cpp', + '<(skia_src_path)/core/SkScan.h', + '<(skia_src_path)/core/SkScanPriv.h', + '<(skia_src_path)/core/SkScan_AntiPath.cpp', + '<(skia_src_path)/core/SkScan_Antihair.cpp', + '<(skia_src_path)/core/SkScan_Hairline.cpp', + '<(skia_src_path)/core/SkScan_Path.cpp', + '<(skia_src_path)/core/SkShader.cpp', + '<(skia_src_path)/core/SkSpriteBlitter_ARGB32.cpp', + '<(skia_src_path)/core/SkSpriteBlitter_RGB16.cpp', + '<(skia_src_path)/core/SkSinTable.h', + '<(skia_src_path)/core/SkSpriteBlitter.h', + '<(skia_src_path)/core/SkSpriteBlitterTemplate.h', + '<(skia_src_path)/core/SkStream.cpp', + '<(skia_src_path)/core/SkString.cpp', + '<(skia_src_path)/core/SkStringUtils.cpp', + '<(skia_src_path)/core/SkStroke.h', + '<(skia_src_path)/core/SkStroke.cpp', + '<(skia_src_path)/core/SkStrokeRec.cpp', + '<(skia_src_path)/core/SkStrokerPriv.cpp', + '<(skia_src_path)/core/SkStrokerPriv.h', + '<(skia_src_path)/core/SkTextFormatParams.h', + '<(skia_src_path)/core/SkTileGrid.cpp', + '<(skia_src_path)/core/SkTileGrid.h', + '<(skia_src_path)/core/SkTileGridPicture.cpp', + '<(skia_src_path)/core/SkTLList.h', + '<(skia_src_path)/core/SkTLS.cpp', + '<(skia_src_path)/core/SkTraceEvent.h', + '<(skia_src_path)/core/SkTSearch.cpp', + '<(skia_src_path)/core/SkTSort.h', + '<(skia_src_path)/core/SkTypeface.cpp', + '<(skia_src_path)/core/SkTypefaceCache.cpp', + '<(skia_src_path)/core/SkTypefaceCache.h', + '<(skia_src_path)/core/SkUnPreMultiply.cpp', + '<(skia_src_path)/core/SkUtils.cpp', + '<(skia_src_path)/core/SkValidatingReadBuffer.cpp', + '<(skia_src_path)/core/SkWriteBuffer.cpp', + '<(skia_src_path)/core/SkWriter32.cpp', + '<(skia_src_path)/core/SkXfermode.cpp', + '<(skia_src_path)/doc/SkDocument.cpp', + '<(skia_src_path)/image/SkImage.cpp', + '<(skia_src_path)/image/SkImagePriv.cpp', + '<(skia_src_path)/image/SkImage_Codec.cpp', + '<(skia_src_path)/image/SkImage_Picture.cpp', + '<(skia_src_path)/image/SkImage_Raster.cpp', + '<(skia_src_path)/image/SkSurface.cpp', + '<(skia_src_path)/image/SkSurface_Base.h', + '<(skia_src_path)/image/SkSurface_Picture.cpp', + '<(skia_src_path)/image/SkSurface_Raster.cpp', + '<(skia_src_path)/pipe/SkGPipeRead.cpp', + '<(skia_src_path)/pipe/SkGPipeWrite.cpp', + '<(skia_include_path)/core/SkAdvancedTypefaceMetrics.h', + '<(skia_include_path)/core/SkBitmap.h', + '<(skia_include_path)/core/SkBitmapDevice.h', + '<(skia_include_path)/core/SkBlitRow.h', + '<(skia_include_path)/core/SkBounder.h', + '<(skia_include_path)/core/SkCanvas.h', + '<(skia_include_path)/core/SkChecksum.h', + '<(skia_include_path)/core/SkChunkAlloc.h', + '<(skia_include_path)/core/SkClipStack.h', + '<(skia_include_path)/core/SkColor.h', + '<(skia_include_path)/core/SkColorFilter.h', + '<(skia_include_path)/core/SkColorPriv.h', + '<(skia_include_path)/core/SkColorShader.h', + '<(skia_include_path)/core/SkComposeShader.h', + '<(skia_include_path)/core/SkData.h', + '<(skia_include_path)/core/SkDeque.h', + '<(skia_include_path)/core/SkDevice.h', + '<(skia_include_path)/core/SkDeviceProperties.h', + '<(skia_include_path)/core/SkDither.h', + '<(skia_include_path)/core/SkDraw.h', + '<(skia_include_path)/core/SkDrawFilter.h', + '<(skia_include_path)/core/SkDrawLooper.h', + '<(skia_include_path)/core/SkEndian.h', + '<(skia_include_path)/core/SkError.h', + '<(skia_include_path)/core/SkFixed.h', + '<(skia_include_path)/core/SkFlattenable.h', + '<(skia_include_path)/core/SkFlattenableSerialization.h', + '<(skia_include_path)/core/SkFloatBits.h', + '<(skia_include_path)/core/SkFloatingPoint.h', + '<(skia_include_path)/core/SkFontHost.h', + '<(skia_include_path)/core/SkGeometry.h', + '<(skia_include_path)/core/SkGraphics.h', + '<(skia_include_path)/core/SkImage.h', + '<(skia_include_path)/core/SkImageDecoder.h', + '<(skia_include_path)/core/SkImageEncoder.h', + '<(skia_include_path)/core/SkImageFilter.h', + '<(skia_include_path)/core/SkImageInfo.h', + '<(skia_include_path)/core/SkInstCnt.h', + '<(skia_include_path)/core/SkMallocPixelRef.h', + '<(skia_include_path)/core/SkMask.h', + '<(skia_include_path)/core/SkMaskFilter.h', + '<(skia_include_path)/core/SkMath.h', + '<(skia_include_path)/core/SkMatrix.h', + '<(skia_include_path)/core/SkMetaData.h', + '<(skia_include_path)/core/SkOnce.h', + '<(skia_include_path)/core/SkOSFile.h', + '<(skia_include_path)/core/SkPackBits.h', + '<(skia_include_path)/core/SkPaint.h', + '<(skia_include_path)/core/SkPath.h', + '<(skia_include_path)/core/SkPathEffect.h', + '<(skia_include_path)/core/SkPathMeasure.h', + '<(skia_include_path)/core/SkPathRef.h', + '<(skia_include_path)/core/SkPicture.h', + '<(skia_include_path)/core/SkPixelRef.h', + '<(skia_include_path)/core/SkPoint.h', + '<(skia_include_path)/core/SkPreConfig.h', + '<(skia_include_path)/core/SkRasterizer.h', + '<(skia_include_path)/core/SkReader32.h', + '<(skia_include_path)/core/SkRect.h', + '<(skia_include_path)/core/SkRefCnt.h', + '<(skia_include_path)/core/SkRegion.h', + '<(skia_include_path)/core/SkRRect.h', + '<(skia_include_path)/core/SkScalar.h', + '<(skia_include_path)/core/SkShader.h', + '<(skia_include_path)/core/SkStream.h', + '<(skia_include_path)/core/SkString.h', + '<(skia_include_path)/core/SkStringUtils.h', + '<(skia_include_path)/core/SkStrokeRec.h', + '<(skia_include_path)/core/SkSurface.h', + '<(skia_include_path)/core/SkTArray.h', + '<(skia_include_path)/core/SkTDArray.h', + '<(skia_include_path)/core/SkTDStack.h', + '<(skia_include_path)/core/SkTDict.h', + '<(skia_include_path)/core/SkTInternalLList.h', + '<(skia_include_path)/core/SkTileGridPicture.h', + '<(skia_include_path)/core/SkTRegistry.h', + '<(skia_include_path)/core/SkTSearch.h', + '<(skia_include_path)/core/SkTemplates.h', + '<(skia_include_path)/core/SkThread.h', + '<(skia_include_path)/core/SkTime.h', + '<(skia_include_path)/core/SkTLazy.h', + '<(skia_include_path)/core/SkTypeface.h', + '<(skia_include_path)/core/SkTypes.h', + '<(skia_include_path)/core/SkUnPreMultiply.h', + '<(skia_include_path)/core/SkUnitMapper.h', + '<(skia_include_path)/core/SkUtils.h', + '<(skia_include_path)/core/SkWeakRefCnt.h', + '<(skia_include_path)/core/SkWriter32.h', + '<(skia_include_path)/core/SkXfermode.h', + '<(skia_src_path)/lazy/SkCachingPixelRef.cpp', + '<(skia_src_path)/lazy/SkCachingPixelRef.h', + '<(skia_include_path)/pathops/SkPathOps.h', + '<(skia_src_path)/pathops/SkAddIntersections.cpp', + '<(skia_src_path)/pathops/SkDCubicIntersection.cpp', + '<(skia_src_path)/pathops/SkDCubicLineIntersection.cpp', + '<(skia_src_path)/pathops/SkDCubicToQuads.cpp', + '<(skia_src_path)/pathops/SkDLineIntersection.cpp', + '<(skia_src_path)/pathops/SkDQuadImplicit.cpp', + '<(skia_src_path)/pathops/SkDQuadIntersection.cpp', + '<(skia_src_path)/pathops/SkDQuadLineIntersection.cpp', + '<(skia_src_path)/pathops/SkIntersections.cpp', + '<(skia_src_path)/pathops/SkOpAngle.cpp', + '<(skia_src_path)/pathops/SkOpContour.cpp', + '<(skia_src_path)/pathops/SkOpEdgeBuilder.cpp', + '<(skia_src_path)/pathops/SkOpSegment.cpp', + '<(skia_src_path)/pathops/SkPathOpsBounds.cpp', + '<(skia_src_path)/pathops/SkPathOpsCommon.cpp', + '<(skia_src_path)/pathops/SkPathOpsCubic.cpp', + '<(skia_src_path)/pathops/SkPathOpsDebug.cpp', + '<(skia_src_path)/pathops/SkPathOpsLine.cpp', + '<(skia_src_path)/pathops/SkPathOpsOp.cpp', + '<(skia_src_path)/pathops/SkPathOpsPoint.cpp', + '<(skia_src_path)/pathops/SkPathOpsQuad.cpp', + '<(skia_src_path)/pathops/SkPathOpsRect.cpp', + '<(skia_src_path)/pathops/SkPathOpsSimplify.cpp', + '<(skia_src_path)/pathops/SkPathOpsTriangle.cpp', + '<(skia_src_path)/pathops/SkPathOpsTypes.cpp', + '<(skia_src_path)/pathops/SkPathWriter.cpp', + '<(skia_src_path)/pathops/SkQuarticRoot.cpp', + '<(skia_src_path)/pathops/SkReduceOrder.cpp', + '<(skia_src_path)/pathops/SkAddIntersections.h', + '<(skia_src_path)/pathops/SkDQuadImplicit.h', + '<(skia_src_path)/pathops/SkIntersectionHelper.h', + '<(skia_src_path)/pathops/SkIntersections.h', + '<(skia_src_path)/pathops/SkLineParameters.h', + '<(skia_src_path)/pathops/SkOpAngle.h', + '<(skia_src_path)/pathops/SkOpContour.h', + '<(skia_src_path)/pathops/SkOpEdgeBuilder.h', + '<(skia_src_path)/pathops/SkOpSegment.h', + '<(skia_src_path)/pathops/SkOpSpan.h', + '<(skia_src_path)/pathops/SkPathOpsBounds.h', + '<(skia_src_path)/pathops/SkPathOpsCommon.h', + '<(skia_src_path)/pathops/SkPathOpsCubic.h', + '<(skia_src_path)/pathops/SkPathOpsCurve.h', + '<(skia_src_path)/pathops/SkPathOpsDebug.h', + '<(skia_src_path)/pathops/SkPathOpsLine.h', + '<(skia_src_path)/pathops/SkPathOpsPoint.h', + '<(skia_src_path)/pathops/SkPathOpsQuad.h', + '<(skia_src_path)/pathops/SkPathOpsRect.h', + '<(skia_src_path)/pathops/SkPathOpsTriangle.h', + '<(skia_src_path)/pathops/SkPathOpsTypes.h', + '<(skia_src_path)/pathops/SkPathWriter.h', + '<(skia_src_path)/pathops/SkQuarticRoot.h', + '<(skia_src_path)/pathops/SkReduceOrder.h', ], 'skia_effects_sources': [ - 'src/effects/Sk1DPathEffect.cpp', - 'src/effects/Sk2DPathEffect.cpp', - 'src/effects/SkArithmeticMode.cpp', - 'src/effects/SkAvoidXfermode.cpp', - 'src/effects/SkBicubicImageFilter.cpp', - 'src/effects/SkBitmapSource.cpp', - 'src/effects/SkBlurDrawLooper.cpp', - 'src/effects/SkBlurMask.cpp', - 'src/effects/SkBlurMask.h', - 'src/effects/SkBlurImageFilter.cpp', - 'src/effects/SkBlurMaskFilter.cpp', - 'src/effects/SkColorFilters.cpp', - 'src/effects/SkColorFilterImageFilter.cpp', - 'src/effects/SkColorMatrix.cpp', - 'src/effects/SkColorMatrixFilter.cpp', - 'src/effects/SkComposeImageFilter.cpp', - 'src/effects/SkCornerPathEffect.cpp', - 'src/effects/SkDashPathEffect.cpp', - 'src/effects/SkDiscretePathEffect.cpp', - 'src/effects/SkDisplacementMapEffect.cpp', - 'src/effects/SkDropShadowImageFilter.cpp', - 'src/effects/SkEmbossMask.cpp', - 'src/effects/SkEmbossMask.h', - 'src/effects/SkEmbossMask_Table.h', - 'src/effects/SkEmbossMaskFilter.cpp', - 'src/effects/SkGpuBlurUtils.h', - 'src/effects/SkGpuBlurUtils.cpp', - 'src/effects/SkKernel33MaskFilter.cpp', - 'src/effects/SkLayerDrawLooper.cpp', - 'src/effects/SkLayerRasterizer.cpp', - 'src/effects/SkLerpXfermode.cpp', - 'src/effects/SkLightingImageFilter.cpp', - 'src/effects/SkLumaColorFilter.cpp', - 'src/effects/SkMagnifierImageFilter.cpp', - 'src/effects/SkMatrixConvolutionImageFilter.cpp', - 'src/effects/SkMatrixImageFilter.cpp', - 'src/effects/SkMergeImageFilter.cpp', - 'src/effects/SkMorphologyImageFilter.cpp', - 'src/effects/SkOffsetImageFilter.cpp', - 'src/effects/SkPaintFlagsDrawFilter.cpp', - 'src/effects/SkPerlinNoiseShader.cpp', - 'src/effects/SkPictureImageFilter.cpp', - 'src/effects/SkPixelXorXfermode.cpp', - 'src/effects/SkPorterDuff.cpp', - 'src/effects/SkRectShaderImageFilter.cpp', - 'src/effects/SkStippleMaskFilter.cpp', - 'src/effects/SkTableColorFilter.cpp', - 'src/effects/SkTableMaskFilter.cpp', - 'src/effects/SkTestImageFilters.cpp', - 'src/effects/SkTileImageFilter.cpp', - 'src/effects/SkTransparentShader.cpp', - 'src/effects/SkXfermodeImageFilter.cpp', + '<(skia_src_path)/effects/Sk1DPathEffect.cpp', + '<(skia_src_path)/effects/Sk2DPathEffect.cpp', + '<(skia_src_path)/effects/SkArithmeticMode.cpp', + '<(skia_src_path)/effects/SkAvoidXfermode.cpp', + '<(skia_src_path)/effects/SkBicubicImageFilter.cpp', + '<(skia_src_path)/effects/SkBitmapSource.cpp', + '<(skia_src_path)/effects/SkBlurDrawLooper.cpp', + '<(skia_src_path)/effects/SkBlurMask.cpp', + '<(skia_src_path)/effects/SkBlurMask.h', + '<(skia_src_path)/effects/SkBlurImageFilter.cpp', + '<(skia_src_path)/effects/SkBlurMaskFilter.cpp', + '<(skia_src_path)/effects/SkColorFilters.cpp', + '<(skia_src_path)/effects/SkColorFilterImageFilter.cpp', + '<(skia_src_path)/effects/SkColorMatrix.cpp', + '<(skia_src_path)/effects/SkColorMatrixFilter.cpp', + '<(skia_src_path)/effects/SkComposeImageFilter.cpp', + '<(skia_src_path)/effects/SkCornerPathEffect.cpp', + '<(skia_src_path)/effects/SkDashPathEffect.cpp', + '<(skia_src_path)/effects/SkDiscretePathEffect.cpp', + '<(skia_src_path)/effects/SkDisplacementMapEffect.cpp', + '<(skia_src_path)/effects/SkDropShadowImageFilter.cpp', + '<(skia_src_path)/effects/SkEmbossMask.cpp', + '<(skia_src_path)/effects/SkEmbossMask.h', + '<(skia_src_path)/effects/SkEmbossMask_Table.h', + '<(skia_src_path)/effects/SkEmbossMaskFilter.cpp', + '<(skia_src_path)/effects/SkGpuBlurUtils.h', + '<(skia_src_path)/effects/SkGpuBlurUtils.cpp', + '<(skia_src_path)/effects/SkKernel33MaskFilter.cpp', + '<(skia_src_path)/effects/SkLayerDrawLooper.cpp', + '<(skia_src_path)/effects/SkLayerRasterizer.cpp', + '<(skia_src_path)/effects/SkLerpXfermode.cpp', + '<(skia_src_path)/effects/SkLightingImageFilter.cpp', + '<(skia_src_path)/effects/SkLumaColorFilter.cpp', + '<(skia_src_path)/effects/SkMagnifierImageFilter.cpp', + '<(skia_src_path)/effects/SkMatrixConvolutionImageFilter.cpp', + '<(skia_src_path)/effects/SkMatrixImageFilter.cpp', + '<(skia_src_path)/effects/SkMergeImageFilter.cpp', + '<(skia_src_path)/effects/SkMorphologyImageFilter.cpp', + '<(skia_src_path)/effects/SkOffsetImageFilter.cpp', + '<(skia_src_path)/effects/SkPaintFlagsDrawFilter.cpp', + '<(skia_src_path)/effects/SkPerlinNoiseShader.cpp', + '<(skia_src_path)/effects/SkPictureImageFilter.cpp', + '<(skia_src_path)/effects/SkPixelXorXfermode.cpp', + '<(skia_src_path)/effects/SkPorterDuff.cpp', + '<(skia_src_path)/effects/SkRectShaderImageFilter.cpp', + '<(skia_src_path)/effects/SkStippleMaskFilter.cpp', + '<(skia_src_path)/effects/SkTableColorFilter.cpp', + '<(skia_src_path)/effects/SkTableMaskFilter.cpp', + '<(skia_src_path)/effects/SkTestImageFilters.cpp', + '<(skia_src_path)/effects/SkTileImageFilter.cpp', + '<(skia_src_path)/effects/SkTransparentShader.cpp', + '<(skia_src_path)/effects/SkXfermodeImageFilter.cpp', - 'src/effects/gradients/SkBitmapCache.cpp', - 'src/effects/gradients/SkBitmapCache.h', - 'src/effects/gradients/SkClampRange.cpp', - 'src/effects/gradients/SkClampRange.h', - 'src/effects/gradients/SkRadialGradient_Table.h', - 'src/effects/gradients/SkGradientShader.cpp', - 'src/effects/gradients/SkGradientShaderPriv.h', - 'src/effects/gradients/SkLinearGradient.cpp', - 'src/effects/gradients/SkLinearGradient.h', - 'src/effects/gradients/SkRadialGradient.cpp', - 'src/effects/gradients/SkRadialGradient.h', - 'src/effects/gradients/SkTwoPointRadialGradient.cpp', - 'src/effects/gradients/SkTwoPointRadialGradient.h', - 'src/effects/gradients/SkTwoPointConicalGradient.cpp', - 'src/effects/gradients/SkTwoPointConicalGradient.h', - 'src/effects/gradients/SkTwoPointConicalGradient_gpu.cpp', - 'src/effects/gradients/SkTwoPointConicalGradient_gpu.h', - 'src/effects/gradients/SkSweepGradient.cpp', - 'src/effects/gradients/SkSweepGradient.h', + '<(skia_src_path)/effects/gradients/SkBitmapCache.cpp', + '<(skia_src_path)/effects/gradients/SkBitmapCache.h', + '<(skia_src_path)/effects/gradients/SkClampRange.cpp', + '<(skia_src_path)/effects/gradients/SkClampRange.h', + '<(skia_src_path)/effects/gradients/SkRadialGradient_Table.h', + '<(skia_src_path)/effects/gradients/SkGradientShader.cpp', + '<(skia_src_path)/effects/gradients/SkGradientShaderPriv.h', + '<(skia_src_path)/effects/gradients/SkLinearGradient.cpp', + '<(skia_src_path)/effects/gradients/SkLinearGradient.h', + '<(skia_src_path)/effects/gradients/SkRadialGradient.cpp', + '<(skia_src_path)/effects/gradients/SkRadialGradient.h', + '<(skia_src_path)/effects/gradients/SkTwoPointRadialGradient.cpp', + '<(skia_src_path)/effects/gradients/SkTwoPointRadialGradient.h', + '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient.cpp', + '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient.h', + '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient_gpu.cpp', + '<(skia_src_path)/effects/gradients/SkTwoPointConicalGradient_gpu.h', + '<(skia_src_path)/effects/gradients/SkSweepGradient.cpp', + '<(skia_src_path)/effects/gradients/SkSweepGradient.h', - 'include/effects/Sk1DPathEffect.h', - 'include/effects/Sk2DPathEffect.h', - 'include/effects/SkXfermodeImageFilter.h', - 'include/effects/SkArithmeticMode.h', - 'include/effects/SkAvoidXfermode.h', - 'include/effects/SkBitmapSource.h', - 'include/effects/SkBlurDrawLooper.h', - 'include/effects/SkBlurImageFilter.h', - 'include/effects/SkBlurMaskFilter.h', - 'include/effects/SkColorMatrix.h', - 'include/effects/SkColorMatrixFilter.h', - 'include/effects/SkColorFilterImageFilter.h', - 'include/effects/SkCornerPathEffect.h', - 'include/effects/SkDashPathEffect.h', - 'include/effects/SkDiscretePathEffect.h', - 'include/effects/SkDisplacementMapEffect.h', - 'include/effects/SkDrawExtraPathEffect.h', - 'include/effects/SkDropShadowImageFilter.h', - 'include/effects/SkEmbossMaskFilter.h', - 'include/effects/SkGradientShader.h', - 'include/effects/SkKernel33MaskFilter.h', - 'include/effects/SkLayerDrawLooper.h', - 'include/effects/SkLayerRasterizer.h', - 'include/effects/SkLerpXfermode.h', - 'include/effects/SkLightingImageFilter.h', - 'include/effects/SkOffsetImageFilter.h', - 'include/effects/SkMorphologyImageFilter.h', - 'include/effects/SkPaintFlagsDrawFilter.h', - 'include/effects/SkPerlinNoiseShader.h', - 'include/effects/SkPixelXorXfermode.h', - 'include/effects/SkPorterDuff.h', - 'include/effects/SkRectShaderImageFilter.h', - 'include/effects/SkStippleMaskFilter.h', - 'include/effects/SkTableColorFilter.h', - 'include/effects/SkTableMaskFilter.h', - 'include/effects/SkTileImageFilter.h', - 'include/effects/SkTransparentShader.h', - 'include/effects/SkMagnifierImageFilter.h', + '<(skia_include_path)/effects/Sk1DPathEffect.h', + '<(skia_include_path)/effects/Sk2DPathEffect.h', + '<(skia_include_path)/effects/SkXfermodeImageFilter.h', + '<(skia_include_path)/effects/SkArithmeticMode.h', + '<(skia_include_path)/effects/SkAvoidXfermode.h', + '<(skia_include_path)/effects/SkBitmapSource.h', + '<(skia_include_path)/effects/SkBlurDrawLooper.h', + '<(skia_include_path)/effects/SkBlurImageFilter.h', + '<(skia_include_path)/effects/SkBlurMaskFilter.h', + '<(skia_include_path)/effects/SkColorMatrix.h', + '<(skia_include_path)/effects/SkColorMatrixFilter.h', + '<(skia_include_path)/effects/SkColorFilterImageFilter.h', + '<(skia_include_path)/effects/SkCornerPathEffect.h', + '<(skia_include_path)/effects/SkDashPathEffect.h', + '<(skia_include_path)/effects/SkDiscretePathEffect.h', + '<(skia_include_path)/effects/SkDisplacementMapEffect.h', + '<(skia_include_path)/effects/SkDrawExtraPathEffect.h', + '<(skia_include_path)/effects/SkDropShadowImageFilter.h', + '<(skia_include_path)/effects/SkEmbossMaskFilter.h', + '<(skia_include_path)/effects/SkGradientShader.h', + '<(skia_include_path)/effects/SkKernel33MaskFilter.h', + '<(skia_include_path)/effects/SkLayerDrawLooper.h', + '<(skia_include_path)/effects/SkLayerRasterizer.h', + '<(skia_include_path)/effects/SkLerpXfermode.h', + '<(skia_include_path)/effects/SkLightingImageFilter.h', + '<(skia_include_path)/effects/SkOffsetImageFilter.h', + '<(skia_include_path)/effects/SkMorphologyImageFilter.h', + '<(skia_include_path)/effects/SkPaintFlagsDrawFilter.h', + '<(skia_include_path)/effects/SkPerlinNoiseShader.h', + '<(skia_include_path)/effects/SkPixelXorXfermode.h', + '<(skia_include_path)/effects/SkPorterDuff.h', + '<(skia_include_path)/effects/SkRectShaderImageFilter.h', + '<(skia_include_path)/effects/SkStippleMaskFilter.h', + '<(skia_include_path)/effects/SkTableColorFilter.h', + '<(skia_include_path)/effects/SkTableMaskFilter.h', + '<(skia_include_path)/effects/SkTileImageFilter.h', + '<(skia_include_path)/effects/SkTransparentShader.h', + '<(skia_include_path)/effects/SkMagnifierImageFilter.h', ], 'skia_pdf_sources': [ - 'include/pdf/SkPDFDevice.h', - 'include/pdf/SkPDFDocument.h', + '<(skia_include_path)/pdf/SkPDFDevice.h', + '<(skia_include_path)/pdf/SkPDFDocument.h', - 'src/pdf/SkPDFCatalog.cpp', - 'src/pdf/SkPDFCatalog.h', - 'src/pdf/SkPDFDevice.cpp', - 'src/pdf/SkPDFDocument.cpp', - 'src/pdf/SkPDFFont.cpp', - 'src/pdf/SkPDFFont.h', - 'src/pdf/SkPDFFontImpl.h', - 'src/pdf/SkPDFFormXObject.cpp', - 'src/pdf/SkPDFFormXObject.h', - 'src/pdf/SkPDFGraphicState.cpp', - 'src/pdf/SkPDFGraphicState.h', - 'src/pdf/SkPDFImage.cpp', - 'src/pdf/SkPDFImage.h', - 'src/pdf/SkPDFPage.cpp', - 'src/pdf/SkPDFPage.h', - 'src/pdf/SkPDFResourceDict.cpp', - 'src/pdf/SkPDFResourceDict.h', - 'src/pdf/SkPDFShader.cpp', - 'src/pdf/SkPDFShader.h', - 'src/pdf/SkPDFStream.cpp', - 'src/pdf/SkPDFStream.h', - 'src/pdf/SkPDFTypes.cpp', - 'src/pdf/SkPDFTypes.h', - 'src/pdf/SkPDFUtils.cpp', - 'src/pdf/SkPDFUtils.h', - 'src/pdf/SkTSet.h', + '<(skia_src_path)/pdf/SkPDFCatalog.cpp', + '<(skia_src_path)/pdf/SkPDFCatalog.h', + '<(skia_src_path)/pdf/SkPDFDevice.cpp', + '<(skia_src_path)/pdf/SkPDFDocument.cpp', + '<(skia_src_path)/pdf/SkPDFFont.cpp', + '<(skia_src_path)/pdf/SkPDFFont.h', + '<(skia_src_path)/pdf/SkPDFFontImpl.h', + '<(skia_src_path)/pdf/SkPDFFormXObject.cpp', + '<(skia_src_path)/pdf/SkPDFFormXObject.h', + '<(skia_src_path)/pdf/SkPDFGraphicState.cpp', + '<(skia_src_path)/pdf/SkPDFGraphicState.h', + '<(skia_src_path)/pdf/SkPDFImage.cpp', + '<(skia_src_path)/pdf/SkPDFImage.h', + '<(skia_src_path)/pdf/SkPDFPage.cpp', + '<(skia_src_path)/pdf/SkPDFPage.h', + '<(skia_src_path)/pdf/SkPDFResourceDict.cpp', + '<(skia_src_path)/pdf/SkPDFResourceDict.h', + '<(skia_src_path)/pdf/SkPDFShader.cpp', + '<(skia_src_path)/pdf/SkPDFShader.h', + '<(skia_src_path)/pdf/SkPDFStream.cpp', + '<(skia_src_path)/pdf/SkPDFStream.h', + '<(skia_src_path)/pdf/SkPDFTypes.cpp', + '<(skia_src_path)/pdf/SkPDFTypes.h', + '<(skia_src_path)/pdf/SkPDFUtils.cpp', + '<(skia_src_path)/pdf/SkPDFUtils.h', + '<(skia_src_path)/pdf/SkTSet.h', ], 'skia_library_sources': [ - 'src/core/SkFlate.cpp', # this should likely be moved into src/utils in skia + '<(skia_src_path)/core/SkFlate.cpp', # this should likely be moved into src/utils in skia - 'include/images/SkImageRef_GlobalPool.h', - 'include/images/SkImageRef.h', - 'include/images/SkMovie.h', - 'include/images/SkPageFlipper.h', - 'include/ports/SkTypeface_win.h', - 'include/utils/mac/SkCGUtils.h', - 'include/utils/SkDeferredCanvas.h', - 'include/utils/SkEventTracer.h', - 'include/utils/SkMatrix44.h', - 'include/utils/SkNullCanvas.h', - 'include/utils/SkNWayCanvas.h', - 'include/utils/SkPictureUtils.h', - 'include/utils/SkProxyCanvas.h', - 'include/utils/SkRTConf.h', - 'src/fonts/SkFontMgr_fontconfig.cpp', - 'src/images/SkScaledBitmapSampler.cpp', - 'src/images/SkScaledBitmapSampler.h', - 'src/ports/SkFontConfigInterface_android.cpp', - 'src/ports/SkFontConfigInterface_direct.cpp', - 'src/ports/SkFontConfigParser_android.cpp', - 'src/ports/SkFontHost_fontconfig.cpp', - 'src/ports/SkFontHost_FreeType_common.cpp', - 'src/ports/SkFontHost_FreeType_common.h', - 'src/ports/SkFontHost_FreeType.cpp', - 'src/ports/SkFontHost_linux.cpp', - 'src/ports/SkFontHost_mac.cpp', - 'src/ports/SkFontHost_win.cpp', - 'src/ports/SkFontHost_win_dw.cpp', - 'src/ports/SkFontMgr_default_gdi.cpp', - 'src/ports/SkGlobalInitialization_chromium.cpp', - 'src/ports/SkImageDecoder_empty.cpp', - 'src/ports/SkOSFile_posix.cpp', - 'src/ports/SkOSFile_stdio.cpp', - 'src/ports/SkOSFile_win.cpp', - 'src/ports/SkThread_win.cpp', - 'src/ports/SkTime_Unix.cpp', - 'src/ports/SkTLS_pthread.cpp', - 'src/ports/SkTLS_win.cpp', - 'src/sfnt/SkOTTable_name.cpp', - 'src/sfnt/SkOTTable_name.h', - 'src/sfnt/SkOTUtils.cpp', - 'src/sfnt/SkOTUtils.h', - 'src/utils/debugger/SkDebugCanvas.cpp', - 'src/utils/debugger/SkDebugCanvas.h', - 'src/utils/debugger/SkDrawCommand.cpp', - 'src/utils/debugger/SkDrawCommand.h', - 'src/utils/debugger/SkObjectParser.cpp', - 'src/utils/debugger/SkObjectParser.h', - 'src/utils/mac/SkCreateCGImageRef.cpp', - 'src/utils/SkBase64.cpp', - 'src/utils/SkBase64.h', - 'src/utils/SkBitmapHasher.cpp', - 'src/utils/SkBitmapHasher.h', - 'src/utils/SkBitSet.cpp', - 'src/utils/SkBitSet.h', - 'src/utils/SkBoundaryPatch.cpp', - 'src/utils/SkFrontBufferedStream.cpp', - 'src/utils/SkCamera.cpp', - 'src/utils/SkCanvasStack.h', - 'src/utils/SkCanvasStack.cpp', - 'src/utils/SkCanvasStateUtils.cpp', - 'src/utils/SkCubicInterval.cpp', - 'src/utils/SkCullPoints.cpp', - 'src/utils/SkDeferredCanvas.cpp', - 'src/utils/SkDumpCanvas.cpp', - 'src/utils/SkEventTracer.cpp', - 'src/utils/SkFloatUtils.h', - 'src/utils/SkGatherPixelRefsAndRects.cpp', - 'src/utils/SkGatherPixelRefsAndRects.h', - 'src/utils/SkInterpolator.cpp', - 'src/utils/SkLayer.cpp', - 'src/utils/SkMatrix44.cpp', - 'src/utils/SkMD5.cpp', - 'src/utils/SkMD5.h', - 'src/utils/SkMeshUtils.cpp', - 'src/utils/SkNinePatch.cpp', - 'src/utils/SkNWayCanvas.cpp', - 'src/utils/SkNullCanvas.cpp', - 'src/utils/SkOSFile.cpp', - 'src/utils/SkParse.cpp', - 'src/utils/SkParseColor.cpp', - 'src/utils/SkParsePath.cpp', - 'src/utils/SkPictureUtils.cpp', - 'src/utils/SkPathUtils.cpp', - 'src/utils/SkProxyCanvas.cpp', - 'src/utils/SkSHA1.cpp', - 'src/utils/SkSHA1.h', - 'src/utils/SkRTConf.cpp', - 'src/utils/SkThreadUtils.h', - 'src/utils/SkThreadUtils_pthread.cpp', - 'src/utils/SkThreadUtils_pthread.h', - 'src/utils/SkThreadUtils_pthread_linux.cpp', - 'src/utils/SkThreadUtils_pthread_mach.cpp', - 'src/utils/SkThreadUtils_pthread_other.cpp', - 'src/utils/SkThreadUtils_win.cpp', - 'src/utils/SkThreadUtils_win.h', - 'src/utils/SkTFitsIn.h', - 'src/utils/SkTLogic.h', - 'src/utils/SkUnitMappers.cpp', + '<(skia_include_path)/images/SkImageRef_GlobalPool.h', + '<(skia_include_path)/images/SkImageRef.h', + '<(skia_include_path)/images/SkMovie.h', + '<(skia_include_path)/images/SkPageFlipper.h', + '<(skia_include_path)/ports/SkTypeface_win.h', + '<(skia_include_path)/utils/mac/SkCGUtils.h', + '<(skia_include_path)/utils/SkDeferredCanvas.h', + '<(skia_include_path)/utils/SkEventTracer.h', + '<(skia_include_path)/utils/SkMatrix44.h', + '<(skia_include_path)/utils/SkNullCanvas.h', + '<(skia_include_path)/utils/SkNWayCanvas.h', + '<(skia_include_path)/utils/SkPictureUtils.h', + '<(skia_include_path)/utils/SkProxyCanvas.h', + '<(skia_include_path)/utils/SkRTConf.h', + '<(skia_src_path)/fonts/SkFontMgr_fontconfig.cpp', + '<(skia_src_path)/images/SkScaledBitmapSampler.cpp', + '<(skia_src_path)/images/SkScaledBitmapSampler.h', + '<(skia_src_path)/ports/SkFontConfigInterface_android.cpp', + '<(skia_src_path)/ports/SkFontConfigInterface_direct.cpp', + '<(skia_src_path)/ports/SkFontConfigParser_android.cpp', + '<(skia_src_path)/ports/SkFontHost_fontconfig.cpp', + '<(skia_src_path)/ports/SkFontHost_FreeType_common.cpp', + '<(skia_src_path)/ports/SkFontHost_FreeType_common.h', + '<(skia_src_path)/ports/SkFontHost_FreeType.cpp', + '<(skia_src_path)/ports/SkFontHost_linux.cpp', + '<(skia_src_path)/ports/SkFontHost_mac.cpp', + '<(skia_src_path)/ports/SkFontHost_win.cpp', + '<(skia_src_path)/ports/SkFontHost_win_dw.cpp', + '<(skia_src_path)/ports/SkFontMgr_default_gdi.cpp', + '<(skia_src_path)/ports/SkGlobalInitialization_chromium.cpp', + '<(skia_src_path)/ports/SkImageDecoder_empty.cpp', + '<(skia_src_path)/ports/SkOSFile_posix.cpp', + '<(skia_src_path)/ports/SkOSFile_stdio.cpp', + '<(skia_src_path)/ports/SkOSFile_win.cpp', + '<(skia_src_path)/ports/SkThread_win.cpp', + '<(skia_src_path)/ports/SkTime_Unix.cpp', + '<(skia_src_path)/ports/SkTLS_pthread.cpp', + '<(skia_src_path)/ports/SkTLS_win.cpp', + '<(skia_src_path)/sfnt/SkOTTable_name.cpp', + '<(skia_src_path)/sfnt/SkOTTable_name.h', + '<(skia_src_path)/sfnt/SkOTUtils.cpp', + '<(skia_src_path)/sfnt/SkOTUtils.h', + '<(skia_src_path)/utils/debugger/SkDebugCanvas.cpp', + '<(skia_src_path)/utils/debugger/SkDebugCanvas.h', + '<(skia_src_path)/utils/debugger/SkDrawCommand.cpp', + '<(skia_src_path)/utils/debugger/SkDrawCommand.h', + '<(skia_src_path)/utils/debugger/SkObjectParser.cpp', + '<(skia_src_path)/utils/debugger/SkObjectParser.h', + '<(skia_src_path)/utils/mac/SkCreateCGImageRef.cpp', + '<(skia_src_path)/utils/SkBase64.cpp', + '<(skia_src_path)/utils/SkBase64.h', + '<(skia_src_path)/utils/SkBitmapHasher.cpp', + '<(skia_src_path)/utils/SkBitmapHasher.h', + '<(skia_src_path)/utils/SkBitSet.cpp', + '<(skia_src_path)/utils/SkBitSet.h', + '<(skia_src_path)/utils/SkBoundaryPatch.cpp', + '<(skia_src_path)/utils/SkFrontBufferedStream.cpp', + '<(skia_src_path)/utils/SkCamera.cpp', + '<(skia_src_path)/utils/SkCanvasStack.h', + '<(skia_src_path)/utils/SkCanvasStack.cpp', + '<(skia_src_path)/utils/SkCanvasStateUtils.cpp', + '<(skia_src_path)/utils/SkCubicInterval.cpp', + '<(skia_src_path)/utils/SkCullPoints.cpp', + '<(skia_src_path)/utils/SkDeferredCanvas.cpp', + '<(skia_src_path)/utils/SkDumpCanvas.cpp', + '<(skia_src_path)/utils/SkEventTracer.cpp', + '<(skia_src_path)/utils/SkFloatUtils.h', + '<(skia_src_path)/utils/SkGatherPixelRefsAndRects.cpp', + '<(skia_src_path)/utils/SkGatherPixelRefsAndRects.h', + '<(skia_src_path)/utils/SkInterpolator.cpp', + '<(skia_src_path)/utils/SkLayer.cpp', + '<(skia_src_path)/utils/SkMatrix44.cpp', + '<(skia_src_path)/utils/SkMD5.cpp', + '<(skia_src_path)/utils/SkMD5.h', + '<(skia_src_path)/utils/SkMeshUtils.cpp', + '<(skia_src_path)/utils/SkNinePatch.cpp', + '<(skia_src_path)/utils/SkNWayCanvas.cpp', + '<(skia_src_path)/utils/SkNullCanvas.cpp', + '<(skia_src_path)/utils/SkOSFile.cpp', + '<(skia_src_path)/utils/SkParse.cpp', + '<(skia_src_path)/utils/SkParseColor.cpp', + '<(skia_src_path)/utils/SkParsePath.cpp', + '<(skia_src_path)/utils/SkPictureUtils.cpp', + '<(skia_src_path)/utils/SkPathUtils.cpp', + '<(skia_src_path)/utils/SkProxyCanvas.cpp', + '<(skia_src_path)/utils/SkSHA1.cpp', + '<(skia_src_path)/utils/SkSHA1.h', + '<(skia_src_path)/utils/SkRTConf.cpp', + '<(skia_src_path)/utils/SkThreadUtils.h', + '<(skia_src_path)/utils/SkThreadUtils_pthread.cpp', + '<(skia_src_path)/utils/SkThreadUtils_pthread.h', + '<(skia_src_path)/utils/SkThreadUtils_pthread_linux.cpp', + '<(skia_src_path)/utils/SkThreadUtils_pthread_mach.cpp', + '<(skia_src_path)/utils/SkThreadUtils_pthread_other.cpp', + '<(skia_src_path)/utils/SkThreadUtils_win.cpp', + '<(skia_src_path)/utils/SkThreadUtils_win.h', + '<(skia_src_path)/utils/SkTFitsIn.h', + '<(skia_src_path)/utils/SkTLogic.h', + '<(skia_src_path)/utils/SkUnitMappers.cpp', #mac - 'include/utils/mac/SkCGUtils.h', - 'src/utils/mac/SkCreateCGImageRef.cpp', + '<(skia_include_path)/utils/mac/SkCGUtils.h', + '<(skia_src_path)/utils/mac/SkCreateCGImageRef.cpp', #windows - 'include/utils/win/SkAutoCoInitialize.h', - 'include/utils/win/SkHRESULT.h', - 'include/utils/win/SkIStream.h', - 'include/utils/win/SkTScopedComPtr.h', - 'src/utils/win/SkAutoCoInitialize.cpp', - 'src/utils/win/SkDWrite.h', - 'src/utils/win/SkDWrite.cpp', - 'src/utils/win/SkDWriteFontFileStream.cpp', - 'src/utils/win/SkDWriteFontFileStream.h', - 'src/utils/win/SkDWriteGeometrySink.cpp', - 'src/utils/win/SkDWriteGeometrySink.h', - 'src/utils/win/SkHRESULT.cpp', - 'src/utils/win/SkIStream.cpp', - 'src/utils/win/SkWGL_win.cpp', + '<(skia_include_path)/utils/win/SkAutoCoInitialize.h', + '<(skia_include_path)/utils/win/SkHRESULT.h', + '<(skia_include_path)/utils/win/SkIStream.h', + '<(skia_include_path)/utils/win/SkTScopedComPtr.h', + '<(skia_src_path)/utils/win/SkAutoCoInitialize.cpp', + '<(skia_src_path)/utils/win/SkDWrite.h', + '<(skia_src_path)/utils/win/SkDWrite.cpp', + '<(skia_src_path)/utils/win/SkDWriteFontFileStream.cpp', + '<(skia_src_path)/utils/win/SkDWriteFontFileStream.h', + '<(skia_src_path)/utils/win/SkDWriteGeometrySink.cpp', + '<(skia_src_path)/utils/win/SkDWriteGeometrySink.h', + '<(skia_src_path)/utils/win/SkHRESULT.cpp', + '<(skia_src_path)/utils/win/SkIStream.cpp', + '<(skia_src_path)/utils/win/SkWGL_win.cpp', #testing - 'src/fonts/SkGScalerContext.cpp', - 'src/fonts/SkGScalerContext.h', + '<(skia_src_path)/fonts/SkGScalerContext.cpp', + '<(skia_src_path)/fonts/SkGScalerContext.h', ], } |