blob: 1ad3e057120f812eda945caeee748f4aa9f5ab0d [file] [log] [blame]
epoger@google.comae85aea2011-05-31 13:50:51 +00001{
2 'includes': [
3 'target_defaults.gypi',
4 ],
5 'targets': [
6 {
7 'target_name': 'pdf',
8 'type': 'static_library',
9 'include_dirs': [
10 '../include/config',
11 '../include/core',
12 '../include/pdf',
13 '../src/core', # needed to get SkGlyphCache.h and SkTextFormatParams.h
14 ],
15 'sources': [
16 '../include/pdf/SkPDFCatalog.h',
17 '../include/pdf/SkPDFDevice.h',
18 '../include/pdf/SkPDFDocument.h',
19 '../include/pdf/SkPDFFont.h',
20 '../include/pdf/SkPDFFormXObject.h',
21 '../include/pdf/SkPDFGraphicState.h',
22 '../include/pdf/SkPDFImage.h',
23 '../include/pdf/SkPDFPage.h',
24 '../include/pdf/SkPDFShader.h',
25 '../include/pdf/SkPDFStream.h',
26 '../include/pdf/SkPDFTypes.h',
27 '../include/pdf/SkPDFUtils.h',
28
29 '../src/pdf/SkPDFCatalog.cpp',
30 '../src/pdf/SkPDFDevice.cpp',
31 '../src/pdf/SkPDFDocument.cpp',
32 '../src/pdf/SkPDFFont.cpp',
33 '../src/pdf/SkPDFFormXObject.cpp',
34 '../src/pdf/SkPDFGraphicState.cpp',
35 '../src/pdf/SkPDFImage.cpp',
36 '../src/pdf/SkPDFPage.cpp',
37 '../src/pdf/SkPDFShader.cpp',
38 '../src/pdf/SkPDFStream.cpp',
39 '../src/pdf/SkPDFTypes.cpp',
40 '../src/pdf/SkPDFUtils.cpp',
41 ],
42 'direct_dependent_settings': {
43 'include_dirs': [
44 '../include/pdf',
45 ],
46 },
47 },
48 ],
49}
50
51# Local Variables:
52# tab-width:2
53# indent-tabs-mode:nil
54# End:
55# vim: set expandtab tabstop=2 shiftwidth=2: