summaryrefslogtreecommitdiff
path: root/pdf.gypi
blob: ae4a032505b679710ec906b759fead10ae1f3d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Include this gypi to include all 'pdf' files
# The parent gyp/gypi file must define
#       'skia_src_path'     e.g. skia/trunk/src
#       'skia_include_path' e.g. skia/trunk/include
#
# The skia build defines these in common_variables.gypi
#
{
    'sources': [
        '<(skia_include_path)/pdf/SkPDFDevice.h',
        '<(skia_include_path)/pdf/SkPDFDocument.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/SkPDFImageStream.cpp',
        '<(skia_src_path)/pdf/SkPDFImageStream.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_src_path)/doc/SkDocument_PDF.cpp',
    ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: