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

Unified Diff: printing/printing.gyp

Issue 149181: Move Emf class to the printing library. Also creates a platform agnostic Nat... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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
« no previous file with comments | « printing/native_metafile.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/printing.gyp
===================================================================
--- printing/printing.gyp (revision 19913)
+++ printing/printing.gyp (working copy)
@@ -15,12 +15,17 @@
'type': '<(library)',
'dependencies': [
'../base/base.gyp:base',
+ '../base/base.gyp:base_gfx',
+
],
'msvs_guid': '9E5416B9-B91B-4029-93F4-102C1AD5CAF4',
'include_dirs': [
'..',
],
'sources': [
+ 'emf_win.cc',
+ 'emf_win.h',
+ 'native_metafile.h',
'units.cc',
'units.h',
],
@@ -49,8 +54,18 @@
'../testing/gtest.gyp:gtestmain',
],
'sources': [
+ 'emf_win_unittest.cc',
'units_unittest.cc',
],
+ 'conditions': [
+ ['OS!="linux"', {'sources/': [['exclude', '_linux_unittest\\.cc$']]}],
+ ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}],
+ ['OS!="win"', {
+ 'sources/': [['exclude', '_win_unittest\\.cc$']]
+ }, { # else: OS=="win"
+ 'sources/': [['exclude', '_posix_unittest\\.cc$']]
+ }],
+ ],
},
],
}
« no previous file with comments | « printing/native_metafile.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698