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

Side by Side Diff: printing/printing.gyp

Issue 2117713002: Print directly to CUPS using the IPP APIs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ippRead
Patch Set: Skip compiling the chromeos context if we don't compile against cups Created 4 years, 5 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
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 ], 198 ],
199 }], 199 }],
200 ['OS=="linux" and chromeos==1', { 200 ['OS=="linux" and chromeos==1', {
201 'defines': [ 201 'defines': [
202 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation 202 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation
203 # of the print backend and enables a custom implementation instead. 203 # of the print backend and enables a custom implementation instead.
204 'PRINT_BACKEND_AVAILABLE', 204 'PRINT_BACKEND_AVAILABLE',
205 ], 205 ],
206 'sources': [ 206 'sources': [
207 'backend/print_backend_chromeos.cc', 207 'backend/print_backend_chromeos.cc',
208 'printed_document_chromeos.cc',
Lei Zhang 2016/07/20 01:26:56 Should the changes here match printing/BUILD.gn? I
skau 2016/07/22 23:36:14 I'm counting the days...
208 ], 209 ],
209 }], 210 }],
210 ['OS=="linux" and chromeos==0', { 211 ['OS=="linux" and chromeos==0', {
211 'sources': [ 212 'sources': [
212 'printed_document_linux.cc', 213 'printed_document_linux.cc',
213 'printing_context_linux.cc', 214 'printing_context_linux.cc',
214 'printing_context_linux.h', 215 'printing_context_linux.h',
215 ], 216 ],
216 }], 217 }],
217 ['OS=="android"', { 218 ['OS=="android"', {
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 '../build/isolate.gypi', 350 '../build/isolate.gypi',
350 ], 351 ],
351 'sources': [ 352 'sources': [
352 'printing_unittests.isolate', 353 'printing_unittests.isolate',
353 ], 354 ],
354 }, 355 },
355 ], 356 ],
356 }], 357 }],
357 ] 358 ]
358 } 359 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698