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

Side by Side Diff: printing/printing.gyp

Issue 12379030: Remove "use_skia" variable from gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 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 unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | skia/skia.gyp » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 'sources/': [['exclude', '_posix\\.cc$']] 106 'sources/': [['exclude', '_posix\\.cc$']]
107 }], 107 }],
108 ['toolkit_uses_gtk == 1', { 108 ['toolkit_uses_gtk == 1', {
109 'dependencies': [ 109 'dependencies': [
110 # For FT_Init_FreeType and friends. 110 # For FT_Init_FreeType and friends.
111 '../build/linux/system.gyp:freetype2', 111 '../build/linux/system.gyp:freetype2',
112 '../build/linux/system.gyp:gtk', 112 '../build/linux/system.gyp:gtk',
113 '../build/linux/system.gyp:gtkprint', 113 '../build/linux/system.gyp:gtkprint',
114 ], 114 ],
115 }], 115 }],
116 ['OS=="mac" and use_skia==0', {
117 'sources/': [
118 ['exclude', 'pdf_metafile_skia\\.(cc|h)$'],
119 ['exclude', 'metafile_skia_wrapper\\.(cc|h)$'],
120 ],
121 }],
122 # Mac-Aura does not support printing. 116 # Mac-Aura does not support printing.
123 ['OS=="mac" and use_aura==1',{ 117 ['OS=="mac" and use_aura==1',{
124 'sources!': [ 118 'sources!': [
125 'printed_document_mac.cc', 119 'printed_document_mac.cc',
126 'printing_context_mac.mm', 120 'printing_context_mac.mm',
127 'printing_context_mac.h', 121 'printing_context_mac.h',
128 ], 122 ],
129 }], 123 }],
130 ['OS=="mac" and use_aura==0',{ 124 ['OS=="mac" and use_aura==0',{
131 'sources': [ 125 'sources': [
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 '<!@(python cups_config_helper.py --cflags)', 288 '<!@(python cups_config_helper.py --cflags)',
295 ], 289 ],
296 }], 290 }],
297 ], 291 ],
298 }, 292 },
299 }], 293 }],
300 ], 294 ],
301 }, 295 },
302 ], 296 ],
303 } 297 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | skia/skia.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698