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

Side by Side Diff: printing/printing.gyp

Issue 8560001: use toolkit_uses_gtk==1 instead of OS==linux for printing_context_gtk.{cc,h} (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
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
« 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 ['OS=="linux" and chromeos==1', { 171 ['OS=="linux" and chromeos==1', {
172 'defines': [ 172 'defines': [
173 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation 173 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation
174 # of the print backend and enables a custom implementation instead. 174 # of the print backend and enables a custom implementation instead.
175 'PRINT_BACKEND_AVAILABLE', 175 'PRINT_BACKEND_AVAILABLE',
176 ], 176 ],
177 'sources': [ 177 'sources': [
178 'backend/print_backend_chromeos.cc', 178 'backend/print_backend_chromeos.cc',
179 ], 179 ],
180 }], 180 }],
181 ['OS=="linux" and chromeos==0', { 181 ['toolkit_uses_gtk==1 and chromeos==0', {
182 'sources': [ 182 'sources': [
183 'printing_context_gtk.cc', 183 'printing_context_gtk.cc',
184 'printing_context_gtk.h', 184 'printing_context_gtk.h',
185 ], 185 ],
186 }], 186 }],
187 ], 187 ],
188 }, 188 },
189 { 189 {
190 'target_name': 'printing_unittests', 190 'target_name': 'printing_unittests',
191 'type': 'executable', 191 'type': 'executable',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 '<!@(python cups_config_helper.py --cflags)', 257 '<!@(python cups_config_helper.py --cflags)',
258 ], 258 ],
259 }], 259 }],
260 ], 260 ],
261 }, 261 },
262 }], 262 }],
263 ], 263 ],
264 }, 264 },
265 ], 265 ],
266 } 266 }
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