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

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: Rebase and nit. 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 # Mac-Aura does not support printing.
115 ['OS=="mac" and use_aura==1',{
116 'sources!': [
117 'printed_document_mac.cc',
118 'printing_context_mac.mm',
119 'printing_context_mac.h',
120 ],
121 }],
114 ['OS=="mac" and use_aura==0',{ 122 ['OS=="mac" and use_aura==0',{
115 'sources': [ 123 'sources': [
116 'printing_context_mac.mm', 124 'printing_context_mac.mm',
117 'printing_context_mac.h', 125 'printing_context_mac.h',
118 ], 126 ],
119 }], 127 }],
120 ['OS=="win"', { 128 ['OS=="win"', {
121 'conditions': [ 129 'conditions': [
122 ['use_aura==1', { 130 ['use_aura==1', {
123 'sources!': [ 131 'sources!': [
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 '<!@(python cups_config_helper.py --cflags)', 266 '<!@(python cups_config_helper.py --cflags)',
259 ], 267 ],
260 }], 268 }],
261 ], 269 ],
262 }, 270 },
263 }], 271 }],
264 ], 272 ],
265 }, 273 },
266 ], 274 ],
267 } 275 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698