Move SkBitSet to utils.

Review URL: https://codereview.appspot.com/5875043

git-svn-id: http://skia.googlecode.com/svn/trunk@3460 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
vandebo@chromium.org 2012-03-21 23:11:46 +00:00
parent cbd76ae138
commit ec1a7fa304
6 changed files with 11 additions and 6 deletions

View File

@ -3,14 +3,20 @@
{
'target_name': 'pdf',
'type': 'static_library',
'dependencies': [
'core.gyp:core',
'ports.gyp:ports',
'utils.gyp:utils',
'zlib.gyp:zlib',
],
'include_dirs': [
'../include/config',
'../include/core',
'../include/pdf',
'../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h
'../src/utils', # needed to get SkBitSet.h
],
'sources': [
'../include/pdf/SkBitSet.h',
'../include/pdf/SkPDFCatalog.h',
'../include/pdf/SkPDFDevice.h',
'../include/pdf/SkPDFDocument.h',
@ -24,7 +30,6 @@
'../include/pdf/SkPDFTypes.h',
'../include/pdf/SkPDFUtils.h',
'../src/pdf/SkBitSet.cpp',
'../src/pdf/SkPDFCatalog.cpp',
'../src/pdf/SkPDFDevice.cpp',
'../src/pdf/SkPDFDocument.cpp',
@ -49,9 +54,6 @@
'../include/pdf',
],
},
'dependencies': [
'zlib.gyp:zlib',
],
},
],
}

View File

@ -11,6 +11,7 @@
'../src/core',
'../src/effects',
'../src/gpu',
'../src/utils',
],
'sources': [
'../tests/AAClipTest.cpp',

View File

@ -37,6 +37,8 @@
'../src/utils/SkBase64.cpp',
'../src/utils/SkBase64.h',
'../src/utils/SkBitSet.cpp',
'../src/utils/SkBitSet.h',
'../src/utils/SkBoundaryPatch.cpp',
'../src/utils/SkCamera.cpp',
'../src/utils/SkColorMatrix.cpp',

View File

@ -7,12 +7,12 @@
'core.gyp:core',
'images.gyp:images',
'utils.gyp:utils',
'pdf.gyp:pdf', # needed to get SkBitSet
],
'include_dirs': [
'../include/device/xps',
'../include/utils/win',
'../src/core', # needed to get SkGlyphCache.h
'../src/utils', # needed to get SkBitSet.h
],
'sources': [
'../include/device/xps/SkConstexprMath.h',