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

Side by Side Diff: printing/printing.gyp

Issue 8486020: compositor_unittests target is unimplmented on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 '../build/linux/system.gyp:gtk', 104 '../build/linux/system.gyp:gtk',
105 '../build/linux/system.gyp:gtkprint', 105 '../build/linux/system.gyp:gtkprint',
106 ], 106 ],
107 }], 107 }],
108 ['OS=="mac" and use_skia==0', { 108 ['OS=="mac" and use_skia==0', {
109 'sources/': [ 109 'sources/': [
110 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'], 110 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'],
111 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'], 111 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'],
112 ], 112 ],
113 }], 113 }],
114 ['OS=="mac" and use_aura==1',{
Nico 2011/11/16 19:11:13 Will printing ever be supported in this configurat
dhollowa 2011/11/16 19:59:18 I can't say it never will, but it is not in the pl
115 'sources!': [
116 'printed_document_mac.cc',
117 'printing_context_mac.mm',
118 'printing_context_mac.h',
119 ],
120 }],
114 ['OS=="mac" and use_aura==0',{ 121 ['OS=="mac" and use_aura==0',{
115 'sources': [ 122 'sources': [
116 'printing_context_mac.mm', 123 'printing_context_mac.mm',
117 'printing_context_mac.h', 124 'printing_context_mac.h',
118 ], 125 ],
119 }], 126 }],
120 ['OS=="win"', { 127 ['OS=="win"', {
121 'conditions': [ 128 'conditions': [
122 ['use_aura==1', { 129 ['use_aura==1', {
123 'sources!': [ 130 'sources!': [
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 '<!@(python cups_config_helper.py --cflags)', 265 '<!@(python cups_config_helper.py --cflags)',
259 ], 266 ],
260 }], 267 }],
261 ], 268 ],
262 }, 269 },
263 }], 270 }],
264 ], 271 ],
265 }, 272 },
266 ], 273 ],
267 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698