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

Unified Diff: printing/printing.gyp

Issue 6733036: Make PluginInstance::PrintPDFOutput-metafile implementation agnostic on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: printing/printing.gyp
diff --git a/printing/printing.gyp b/printing/printing.gyp
index 049e752b56f4be185fc46846333422a865356070..8da1ed556de37a2a4d304598b55a7227bd69ace3 100644
--- a/printing/printing.gyp
+++ b/printing/printing.gyp
@@ -38,6 +38,8 @@
'image.h',
'native_metafile_factory.cc',
'native_metafile_factory.h',
+ 'native_metafile_skia_wrapper.cc',
+ 'native_metafile_skia_wrapper.h',
kmadhusu 2011/03/24 21:38:15 style nit: Include them after "native_metafile.h".
vandebo (ex-Chrome) 2011/03/24 21:44:45 I contend that the current ordering or the orderin
'native_metafile.h',
'page_number.cc',
'page_number.h',
@@ -88,7 +90,10 @@
['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{
'sources/': [['exclude', '_cairo\\.cc$']]
}],
- ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}],
+ ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]
+ }, { # else: OS=="mac"
+ 'sources/': [['exclude', 'native_metafile_skia_wrapper\\.(cc|h)$']]
+ }],
['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']]
}, { # else: OS=="win"
'sources/': [['exclude', '_posix\\.cc$']]

Powered by Google App Engine
This is Rietveld 408576698