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

Side by Side Diff: printing/printing.gyp

Issue 268036: Implement the basic OS-level printing mechanics on Mac (Closed)
Patch Set: Address review comments Created 11 years, 2 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 26 matching lines...) Expand all
37 'page_range.h', 37 'page_range.h',
38 'page_setup.cc', 38 'page_setup.cc',
39 'page_setup.h', 39 'page_setup.h',
40 'pdf_metafile_mac.h', 40 'pdf_metafile_mac.h',
41 'pdf_metafile_mac.cc', 41 'pdf_metafile_mac.cc',
42 'pdf_ps_metafile_linux.h', 42 'pdf_ps_metafile_linux.h',
43 'pdf_ps_metafile_linux.cc', 43 'pdf_ps_metafile_linux.cc',
44 'print_settings.cc', 44 'print_settings.cc',
45 'print_settings.h', 45 'print_settings.h',
46 'printed_document.cc', 46 'printed_document.cc',
47 'printed_document_linux.cc',
48 'printed_document_mac.cc',
49 'printed_document_win.cc',
47 'printed_document.h', 50 'printed_document.h',
48 'printed_page.cc', 51 'printed_page.cc',
49 'printed_page.h', 52 'printed_page.h',
50 'printed_pages_source.h', 53 'printed_pages_source.h',
51 'printing_context.h', 54 'printing_context.h',
52 'printing_context_linux.cc', 55 'printing_context_linux.cc',
53 'printing_context_mac.cc', 56 'printing_context_mac.mm',
54 'printing_context_win.cc', 57 'printing_context_win.cc',
55 'units.cc', 58 'units.cc',
56 'units.h', 59 'units.h',
57 ], 60 ],
58 'direct_dependent_settings': { 61 'direct_dependent_settings': {
59 'include_dirs': [ 62 'include_dirs': [
60 '..', 63 '..',
61 ], 64 ],
62 }, 65 },
63 'conditions': [ 66 'conditions': [
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 ], 115 ],
113 }, 116 },
114 ], 117 ],
115 } 118 }
116 119
117 # Local Variables: 120 # Local Variables:
118 # tab-width:2 121 # tab-width:2
119 # indent-tabs-mode:nil 122 # indent-tabs-mode:nil
120 # End: 123 # End:
121 # vim: set expandtab tabstop=2 shiftwidth=2: 124 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698