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

Side by Side Diff: printing/printing.gyp

Issue 8290001: Excludes printing aura files on windows as the windows ones work (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '../build/linux/system.gyp:gtkprint', 111 '../build/linux/system.gyp:gtkprint',
112 ], 112 ],
113 }], 113 }],
114 ['OS=="mac" and use_skia==0', { 114 ['OS=="mac" and use_skia==0', {
115 'sources/': [ 115 'sources/': [
116 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], 116 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'],
117 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], 117 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'],
118 ], 118 ],
119 }], 119 }],
120 ['OS=="win"', { 120 ['OS=="win"', {
121 'conditions': [
122 ['use_aura==1', {
123 'sources!': [
124 'image_aura.cc',
125 'printing_context_aura.cc',
126 'printed_document_aura.cc',
Lei Zhang 2011/10/13 21:51:44 nit: printed before printing.
127 ],
128 }],
129 ],
121 'defines': [ 130 'defines': [
122 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation 131 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation
123 # of the print backend and enables a custom implementation instead. 132 # of the print backend and enables a custom implementation instead.
124 'PRINT_BACKEND_AVAILABLE', 133 'PRINT_BACKEND_AVAILABLE',
125 ], 134 ],
126 'sources': [ 135 'sources': [
127 'backend/win_helper.cc', 136 'backend/win_helper.cc',
128 'backend/win_helper.h', 137 'backend/win_helper.h',
129 'backend/print_backend_win.cc', 138 'backend/print_backend_win.cc',
130 ], 139 ],
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 ], 238 ],
230 }, 239 },
231 }], 240 }],
232 ], 241 ],
233 }, 242 },
234 }], 243 }],
235 ], 244 ],
236 }, 245 },
237 ], 246 ],
238 } 247 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698