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

Side by Side Diff: printing/printing.gyp

Issue 62793002: Allow printing component to be removed completely (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: also fix chromium_builder_tests, coverage_build Created 7 years, 1 month 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 | « content/content_browser.gypi ('k') | webkit/glue/webkit_glue.gypi » ('j') | 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 'print_settings_initializer_win.h', 87 'print_settings_initializer_win.h',
88 'units.cc', 88 'units.cc',
89 'units.h', 89 'units.h',
90 ], 90 ],
91 'direct_dependent_settings': { 91 'direct_dependent_settings': {
92 'include_dirs': [ 92 'include_dirs': [
93 '..', 93 '..',
94 ], 94 ],
95 }, 95 },
96 'conditions': [ 96 'conditions': [
97 ['enable_printing==0', {
98 'sources/': [
99 ['exclude', '.'],
100 ],
101 }],
102 ['use_aura==1', { 97 ['use_aura==1', {
103 'dependencies': [ 98 'dependencies': [
104 '<(DEPTH)/ui/aura/aura.gyp:aura', 99 '<(DEPTH)/ui/aura/aura.gyp:aura',
105 ], 100 ],
106 }], 101 }],
107 ['toolkit_uses_gtk == 0',{ 102 ['toolkit_uses_gtk == 0',{
108 'sources/': [['exclude', '_cairo\\.cc$']] 103 'sources/': [['exclude', '_cairo\\.cc$']]
109 }], 104 }],
110 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], 105 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}],
111 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] 106 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']]
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 'printing_test.h', 249 'printing_test.h',
255 'page_number_unittest.cc', 250 'page_number_unittest.cc',
256 'page_range_unittest.cc', 251 'page_range_unittest.cc',
257 'page_setup_unittest.cc', 252 'page_setup_unittest.cc',
258 'pdf_metafile_cg_mac_unittest.cc', 253 'pdf_metafile_cg_mac_unittest.cc',
259 'printed_page_unittest.cc', 254 'printed_page_unittest.cc',
260 'printing_context_win_unittest.cc', 255 'printing_context_win_unittest.cc',
261 'units_unittest.cc', 256 'units_unittest.cc',
262 ], 257 ],
263 'conditions': [ 258 'conditions': [
264 ['enable_printing==0', {
265 'sources/': [
266 ['exclude', '.'],
267 ],
268 }],
269 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$ ']]}], 259 ['toolkit_uses_gtk == 0', {'sources/': [['exclude', '_gtk_unittest\\.cc$ ']]}],
270 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}], 260 ['OS!="mac"', {'sources/': [['exclude', '_mac_unittest\\.(cc|mm?)$']]}],
271 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}], 261 ['OS!="win"', {'sources/': [['exclude', '_win_unittest\\.cc$']]}],
272 ['use_cups==1', { 262 ['use_cups==1', {
273 'defines': [ 263 'defines': [
274 'USE_CUPS', 264 'USE_CUPS',
275 ], 265 ],
276 'sources': [ 266 'sources': [
277 'backend/cups_helper_unittest.cc', 267 'backend/cups_helper_unittest.cc',
278 ], 268 ],
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 '<!@(python cups_config_helper.py --cflags)', 313 '<!@(python cups_config_helper.py --cflags)',
324 ], 314 ],
325 }], 315 }],
326 ], 316 ],
327 }, 317 },
328 }], 318 }],
329 ], 319 ],
330 }, 320 },
331 ], 321 ],
332 } 322 }
OLDNEW
« no previous file with comments | « content/content_browser.gypi ('k') | webkit/glue/webkit_glue.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698