OLD | NEW |
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 15 matching lines...) Expand all Loading... |
26 ], | 26 ], |
27 'include_dirs': [ | 27 'include_dirs': [ |
28 '..', | 28 '..', |
29 ], | 29 ], |
30 'sources': [ | 30 'sources': [ |
31 'backend/print_backend.cc', | 31 'backend/print_backend.cc', |
32 'backend/print_backend.h', | 32 'backend/print_backend.h', |
33 'backend/print_backend_consts.cc', | 33 'backend/print_backend_consts.cc', |
34 'backend/print_backend_consts.h', | 34 'backend/print_backend_consts.h', |
35 'backend/print_backend_dummy.cc', | 35 'backend/print_backend_dummy.cc', |
| 36 'backend/print_backend_win.cc', |
36 'backend/printing_info_win.cc', | 37 'backend/printing_info_win.cc', |
37 'backend/printing_info_win.h', | 38 'backend/printing_info_win.h', |
38 'emf_win.cc', | 39 'emf_win.cc', |
39 'emf_win.h', | 40 'emf_win.h', |
40 'image.cc', | 41 'image.cc', |
41 'image.h', | 42 'image.h', |
42 'image_android.cc', | 43 'image_android.cc', |
43 'image_linux.cc', | 44 'image_linux.cc', |
44 'image_mac.cc', | 45 'image_mac.cc', |
45 'image_win.cc', | 46 'image_win.cc', |
(...skipping 25 matching lines...) Expand all Loading... |
71 'printed_document.cc', | 72 'printed_document.cc', |
72 'printed_document.h', | 73 'printed_document.h', |
73 'printed_document_linux.cc', | 74 'printed_document_linux.cc', |
74 'printed_document_mac.cc', | 75 'printed_document_mac.cc', |
75 'printed_document_win.cc', | 76 'printed_document_win.cc', |
76 'printed_page.cc', | 77 'printed_page.cc', |
77 'printed_page.h', | 78 'printed_page.h', |
78 'printed_pages_source.h', | 79 'printed_pages_source.h', |
79 'printing_context.cc', | 80 'printing_context.cc', |
80 'printing_context.h', | 81 'printing_context.h', |
| 82 'printing_context_system_dialog_win.cc', |
| 83 'printing_context_system_dialog_win.h', |
| 84 'printing_context_win.cc', |
| 85 'printing_context_win.h', |
81 'printing_utils.cc', | 86 'printing_utils.cc', |
82 'printing_utils.h', | 87 'printing_utils.h', |
83 'units.cc', | 88 'units.cc', |
84 'units.h', | 89 'units.h', |
85 ], | 90 ], |
86 'direct_dependent_settings': { | 91 'direct_dependent_settings': { |
87 'include_dirs': [ | 92 'include_dirs': [ |
88 '..', | 93 '..', |
89 ], | 94 ], |
90 }, | 95 }, |
(...skipping 22 matching lines...) Expand all Loading... |
113 '<(DEPTH)/ui/aura/aura.gyp:aura', | 118 '<(DEPTH)/ui/aura/aura.gyp:aura', |
114 ], | 119 ], |
115 'defines': [ | 120 'defines': [ |
116 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 121 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
117 # of the print backend and enables a custom implementation instead. | 122 # of the print backend and enables a custom implementation instead. |
118 'PRINT_BACKEND_AVAILABLE', | 123 'PRINT_BACKEND_AVAILABLE', |
119 ], | 124 ], |
120 'sources': [ | 125 'sources': [ |
121 'backend/win_helper.cc', | 126 'backend/win_helper.cc', |
122 'backend/win_helper.h', | 127 'backend/win_helper.h', |
123 'backend/print_backend_win.cc', | |
124 'printing_context_win.cc', | |
125 'printing_context_win.h', | |
126 ], | 128 ], |
127 }], | 129 }], |
128 ['chromeos==1',{ | 130 ['chromeos==1',{ |
129 'sources': [ | 131 'sources': [ |
130 'printing_context_no_system_dialog.cc', | 132 'printing_context_no_system_dialog.cc', |
131 'printing_context_no_system_dialog.h', | 133 'printing_context_no_system_dialog.h', |
132 ], | 134 ], |
133 }], | 135 }], |
134 ['use_cups==1', { | 136 ['use_cups==1', { |
135 'dependencies': [ | 137 'dependencies': [ |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 }, | 309 }, |
308 'dependencies': [ | 310 'dependencies': [ |
309 '../base/base.gyp:base_java', | 311 '../base/base.gyp:base_java', |
310 ], | 312 ], |
311 'includes': [ '../build/java.gypi' ], | 313 'includes': [ '../build/java.gypi' ], |
312 } | 314 } |
313 ] | 315 ] |
314 }], | 316 }], |
315 ] | 317 ] |
316 } | 318 } |
OLD | NEW |