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

Side by Side Diff: printing/printing.gyp

Issue 8763007: Clean up cloud printing aura stub code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Clean image_aura.cc. Created 9 years 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
« no previous file with comments | « printing/printed_document_gtk.cc ('k') | 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 17 matching lines...) Expand all
28 ], 28 ],
29 'sources': [ 29 'sources': [
30 'backend/print_backend.cc', 30 'backend/print_backend.cc',
31 'backend/print_backend.h', 31 'backend/print_backend.h',
32 'backend/print_backend_consts.cc', 32 'backend/print_backend_consts.cc',
33 'backend/print_backend_consts.h', 33 'backend/print_backend_consts.h',
34 'backend/print_backend_dummy.cc', 34 'backend/print_backend_dummy.cc',
35 'emf_win.cc', 35 'emf_win.cc',
36 'emf_win.h', 36 'emf_win.h',
37 'image.cc', 37 'image.cc',
38 'image_aura.cc', 38 'image_linux.cc',
39 'image_cairo.cc',
40 'image_mac.cc', 39 'image_mac.cc',
41 'image_win.cc', 40 'image_win.cc',
42 'image.h', 41 'image.h',
43 'metafile.h', 42 'metafile.h',
44 'metafile_impl.h', 43 'metafile_impl.h',
45 'metafile_skia_wrapper.h', 44 'metafile_skia_wrapper.h',
46 'metafile_skia_wrapper.cc', 45 'metafile_skia_wrapper.cc',
47 'page_number.cc', 46 'page_number.cc',
48 'page_number.h', 47 'page_number.h',
49 'page_range.cc', 48 'page_range.cc',
50 'page_range.h', 49 'page_range.h',
51 'page_setup.cc', 50 'page_setup.cc',
52 'page_setup.h', 51 'page_setup.h',
53 'page_size_margins.cc', 52 'page_size_margins.cc',
54 'page_size_margins.h', 53 'page_size_margins.h',
55 'pdf_metafile_cg_mac.cc', 54 'pdf_metafile_cg_mac.cc',
56 'pdf_metafile_cg_mac.h', 55 'pdf_metafile_cg_mac.h',
57 'pdf_metafile_skia.h', 56 'pdf_metafile_skia.h',
58 'pdf_metafile_skia.cc', 57 'pdf_metafile_skia.cc',
59 'printed_document_aura.cc', 58 'printed_document_gtk.cc',
60 'printed_document_cairo.cc',
61 'printed_document.cc', 59 'printed_document.cc',
62 'printed_document.h', 60 'printed_document.h',
63 'printed_document_mac.cc', 61 'printed_document_mac.cc',
64 'printed_document_win.cc', 62 'printed_document_win.cc',
65 'printed_page.cc', 63 'printed_page.cc',
66 'printed_page.h', 64 'printed_page.h',
67 'printed_pages_source.h', 65 'printed_pages_source.h',
68 'printing_context.cc', 66 'printing_context.cc',
69 'printing_context.h', 67 'printing_context.h',
70 'print_dialog_gtk_interface.h', 68 'print_dialog_gtk_interface.h',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 ], 118 ],
121 }], 119 }],
122 ['OS=="mac" and use_aura==0',{ 120 ['OS=="mac" and use_aura==0',{
123 'sources': [ 121 'sources': [
124 'printing_context_mac.mm', 122 'printing_context_mac.mm',
125 'printing_context_mac.h', 123 'printing_context_mac.h',
126 ], 124 ],
127 }], 125 }],
128 ['OS=="win"', { 126 ['OS=="win"', {
129 'conditions': [ 127 'conditions': [
130 ['use_aura==1', { 128 ['use_aura==0', {
131 'sources!': [
132 'image_aura.cc',
133 'printed_document_aura.cc',
134 ],
135 }, { #else: use_aura==0
136 'sources': [ 129 'sources': [
137 'printing_context_win.cc', 130 'printing_context_win.cc',
138 'printing_context_win.h', 131 'printing_context_win.h',
139 ], 132 ],
140 }]], 133 }]],
141 'defines': [ 134 'defines': [
142 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation 135 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation
143 # of the print backend and enables a custom implementation instead. 136 # of the print backend and enables a custom implementation instead.
144 'PRINT_BACKEND_AVAILABLE', 137 'PRINT_BACKEND_AVAILABLE',
145 ], 138 ],
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 '<!@(python cups_config_helper.py --cflags)', 259 '<!@(python cups_config_helper.py --cflags)',
267 ], 260 ],
268 }], 261 }],
269 ], 262 ],
270 }, 263 },
271 }], 264 }],
272 ], 265 ],
273 }, 266 },
274 ], 267 ],
275 } 268 }
OLDNEW
« no previous file with comments | « printing/printed_document_gtk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698