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

Side by Side Diff: printing/printing.gyp

Issue 6733036: Make PluginInstance::PrintPDFOutput-metafile implementation agnostic on Linux. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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 | Annotate | Revision Log
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 20 matching lines...) Expand all
31 'backend/print_backend_dummy.cc', 31 'backend/print_backend_dummy.cc',
32 'emf_win.cc', 32 'emf_win.cc',
33 'emf_win.h', 33 'emf_win.h',
34 'image.cc', 34 'image.cc',
35 'image_cairo.cc', 35 'image_cairo.cc',
36 'image_mac.cc', 36 'image_mac.cc',
37 'image_win.cc', 37 'image_win.cc',
38 'image.h', 38 'image.h',
39 'native_metafile_factory.cc', 39 'native_metafile_factory.cc',
40 'native_metafile_factory.h', 40 'native_metafile_factory.h',
41 'native_metafile_skia_wrapper.cc',
42 'native_metafile_skia_wrapper.h',
kmadhusu 2011/03/24 21:38:15 style nit: Include them after "native_metafile.h".
vandebo (ex-Chrome) 2011/03/24 21:44:45 I contend that the current ordering or the orderin
41 'native_metafile.h', 43 'native_metafile.h',
42 'page_number.cc', 44 'page_number.cc',
43 'page_number.h', 45 'page_number.h',
44 'page_overlays.cc', 46 'page_overlays.cc',
45 'page_overlays.h', 47 'page_overlays.h',
46 'page_range.cc', 48 'page_range.cc',
47 'page_range.h', 49 'page_range.h',
48 'page_setup.cc', 50 'page_setup.cc',
49 'page_setup.h', 51 'page_setup.h',
50 'pdf_metafile_mac.cc', 52 'pdf_metafile_mac.cc',
(...skipping 30 matching lines...) Expand all
81 ], 83 ],
82 'direct_dependent_settings': { 84 'direct_dependent_settings': {
83 'include_dirs': [ 85 'include_dirs': [
84 '..', 86 '..',
85 ], 87 ],
86 }, 88 },
87 'conditions': [ 89 'conditions': [
88 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ 90 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{
89 'sources/': [['exclude', '_cairo\\.cc$']] 91 'sources/': [['exclude', '_cairo\\.cc$']]
90 }], 92 }],
91 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], 93 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]
94 }, { # else: OS=="mac"
95 'sources/': [['exclude', 'native_metafile_skia_wrapper\\.(cc|h)$']]
96 }],
92 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] 97 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']]
93 }, { # else: OS=="win" 98 }, { # else: OS=="win"
94 'sources/': [['exclude', '_posix\\.cc$']] 99 'sources/': [['exclude', '_posix\\.cc$']]
95 }], 100 }],
96 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { 101 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', {
97 'dependencies': [ 102 'dependencies': [
98 # For FT_Init_FreeType and friends. 103 # For FT_Init_FreeType and friends.
99 '../build/linux/system.gyp:freetype2', 104 '../build/linux/system.gyp:freetype2',
100 '../build/linux/system.gyp:gtk', 105 '../build/linux/system.gyp:gtk',
101 '../build/linux/system.gyp:gtkprint', 106 '../build/linux/system.gyp:gtkprint',
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 ], 196 ],
192 }, 197 },
193 ], 198 ],
194 } 199 }
195 200
196 # Local Variables: 201 # Local Variables:
197 # tab-width:2 202 # tab-width:2
198 # indent-tabs-mode:nil 203 # indent-tabs-mode:nil
199 # End: 204 # End:
200 # vim: set expandtab tabstop=2 shiftwidth=2: 205 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698