diff options
author | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-08 00:21:20 +0000 |
---|---|---|
committer | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-08 00:21:20 +0000 |
commit | 8f87929b97f7e22bdf2c58e65fb24440c726a2d0 (patch) | |
tree | bc4d5682558209ec8e334d7eec0e799eacdd0a29 /printing/printing.gyp | |
parent | 636bffade735efe9ea47b32e766596672f780fc5 (diff) | |
download | chromium_src-8f87929b97f7e22bdf2c58e65fb24440c726a2d0.zip chromium_src-8f87929b97f7e22bdf2c58e65fb24440c726a2d0.tar.gz chromium_src-8f87929b97f7e22bdf2c58e65fb24440c726a2d0.tar.bz2 |
+ This CL pulls in all the PDF code (i.e. we are now compiling the PDF backend on Chrome).
+ Add a Metafile to contain Skia PDF content.
+ Add a VectorPlatformDevice for use with the Skia PDF backend.
BUG=62889
TEST=NONE
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=80841
Reverted: http://src.chromium.org/viewvc/chrome?view=rev&revision=80857
Review URL: http://codereview.chromium.org/6499024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printing.gyp')
-rw-r--r-- | printing/printing.gyp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/printing/printing.gyp b/printing/printing.gyp index ae61a41..87b9485 100644 --- a/printing/printing.gyp +++ b/printing/printing.gyp @@ -51,6 +51,8 @@ 'pdf_metafile_cairo_linux.h', 'pdf_metafile_cg_mac.cc', 'pdf_metafile_cg_mac.h', + 'pdf_metafile_skia.h', + 'pdf_metafile_skia.cc', 'printed_document_cairo.cc', 'printed_document.cc', 'printed_document.h', @@ -107,6 +109,9 @@ '../build/linux/system.gyp:gtkprint', ], }], + ['OS=="mac"', + {'sources/': [['exclude', 'pdf_metafile_skia\\.(cc|h)$']]} + ], ['OS=="win"', { 'defines': [ # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |