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

Side by Side Diff: printing/printing.gyp

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 4 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
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.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) 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'print_settings_initializer_win.h', 85 'print_settings_initializer_win.h',
86 'units.cc', 86 'units.cc',
87 'units.h', 87 'units.h',
88 ], 88 ],
89 'direct_dependent_settings': { 89 'direct_dependent_settings': {
90 'include_dirs': [ 90 'include_dirs': [
91 '..', 91 '..',
92 ], 92 ],
93 }, 93 },
94 'conditions': [ 94 'conditions': [
95 ['enable_printing!=1', { 95 ['enable_printing==0', {
96 'sources/': [ 96 'sources/': [
97 ['exclude', '.'], 97 ['exclude', '.'],
98 ], 98 ],
99 }], 99 }],
100 ['use_aura==1', { 100 ['use_aura==1', {
101 'dependencies': [ 101 'dependencies': [
102 '<(DEPTH)/ui/aura/aura.gyp:aura', 102 '<(DEPTH)/ui/aura/aura.gyp:aura',
103 ], 103 ],
104 }], 104 }],
105 ['toolkit_uses_gtk == 0',{ 105 ['toolkit_uses_gtk == 0',{
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 'printing_test.h', 245 'printing_test.h',
246 'page_number_unittest.cc', 246 'page_number_unittest.cc',
247 'page_range_unittest.cc', 247 'page_range_unittest.cc',
248 'page_setup_unittest.cc', 248 'page_setup_unittest.cc',
249 'pdf_metafile_cg_mac_unittest.cc', 249 'pdf_metafile_cg_mac_unittest.cc',
250 'printed_page_unittest.cc', 250 'printed_page_unittest.cc',
251 'run_all_unittests.cc', 251 'run_all_unittests.cc',
252 'units_unittest.cc', 252 'units_unittest.cc',
253 ], 253 ],
254 'conditions': [ 254 'conditions': [
255 ['enable_printing!=1', { 255 ['enable_printing==0', {
256 'sources/': [ 256 'sources/': [
257 ['exclude', '.'], 257 ['exclude', '.'],
258 ['include', 'run_all_unittests.cc'], 258 ['include', 'run_all_unittests.cc'],
259 ], 259 ],
260 }], 260 }],
261 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$ ']]}], 261 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$ ']]}],
262 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], 262 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}],
263 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}], 263 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}],
264 ['OS=="win" and use_aura == 0', { 264 ['OS=="win" and use_aura == 0', {
265 'sources': [ 265 'sources': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 '<!@(python cups_config_helper.py --cflags)', 320 '<!@(python cups_config_helper.py --cflags)',
321 ], 321 ],
322 }], 322 }],
323 ], 323 ],
324 }, 324 },
325 }], 325 }],
326 ], 326 ],
327 }, 327 },
328 ], 328 ],
329 } 329 }
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698