Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(213)

Side by Side Diff: gyp/pdf.gyp

Issue 16660002: SkDocument base for pdf, xps, etc. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: add Done proc, so caller can delete the stream automatically when the doc is done with it Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'pdf', 4 'target_name': 'pdf',
5 'product_name': 'skia_pdf', 5 'product_name': 'skia_pdf',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'dependencies': [ 8 'dependencies': [
9 'skia_lib.gyp:skia_lib', 9 'skia_lib.gyp:skia_lib',
10 'zlib.gyp:zlib', 10 'zlib.gyp:zlib',
(...skipping 29 matching lines...) Expand all
40 '../src/pdf/SkPDFPage.h', 40 '../src/pdf/SkPDFPage.h',
41 '../src/pdf/SkPDFShader.cpp', 41 '../src/pdf/SkPDFShader.cpp',
42 '../src/pdf/SkPDFShader.h', 42 '../src/pdf/SkPDFShader.h',
43 '../src/pdf/SkPDFStream.cpp', 43 '../src/pdf/SkPDFStream.cpp',
44 '../src/pdf/SkPDFStream.h', 44 '../src/pdf/SkPDFStream.h',
45 '../src/pdf/SkPDFTypes.cpp', 45 '../src/pdf/SkPDFTypes.cpp',
46 '../src/pdf/SkPDFTypes.h', 46 '../src/pdf/SkPDFTypes.h',
47 '../src/pdf/SkPDFUtils.cpp', 47 '../src/pdf/SkPDFUtils.cpp',
48 '../src/pdf/SkPDFUtils.h', 48 '../src/pdf/SkPDFUtils.h',
49 '../src/pdf/SkTSet.h', 49 '../src/pdf/SkTSet.h',
50
51 '../src/doc/SkDocument_PDF.cpp',
50 ], 52 ],
51 # This section makes all targets that depend on this target 53 # This section makes all targets that depend on this target
52 # #define SK_SUPPORT_PDF and have access to the pdf header files. 54 # #define SK_SUPPORT_PDF and have access to the pdf header files.
53 'direct_dependent_settings': { 55 'direct_dependent_settings': {
54 'defines': [ 56 'defines': [
55 'SK_SUPPORT_PDF', 57 'SK_SUPPORT_PDF',
56 ], 58 ],
57 'include_dirs': [ 59 'include_dirs': [
58 '../include/pdf', 60 '../include/pdf',
59 ], 61 ],
60 }, 62 },
61 }, 63 },
62 ], 64 ],
63 } 65 }
64 66
65 # Local Variables: 67 # Local Variables:
66 # tab-width:2 68 # tab-width:2
67 # indent-tabs-mode:nil 69 # indent-tabs-mode:nil
68 # End: 70 # End:
69 # vim: set expandtab tabstop=2 shiftwidth=2: 71 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | gyp/tools.gyp » ('j') | include/core/SkDocument.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698