diff options
author | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-07 21:30:39 +0000 |
---|---|---|
committer | vandebo@chromium.org <vandebo@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-07 21:30:39 +0000 |
commit | 4b63c934d571a5a1d773fd3129edeab4bd2c4504 (patch) | |
tree | 50f0df251c814e91a0a0510e9f76cb3b972e2fc7 /printing/printing.gyp | |
parent | 8360c7edcb39a407723ce7c32a0fabeeae397f7a (diff) | |
download | chromium_src-4b63c934d571a5a1d773fd3129edeab4bd2c4504.zip chromium_src-4b63c934d571a5a1d773fd3129edeab4bd2c4504.tar.gz chromium_src-4b63c934d571a5a1d773fd3129edeab4bd2c4504.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
Review URL: http://codereview.chromium.org/6499024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80841 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 |