OLD | NEW |
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 18 matching lines...) Expand all Loading... |
29 'backend/print_backend_consts.cc', | 29 'backend/print_backend_consts.cc', |
30 'backend/print_backend_consts.h', | 30 'backend/print_backend_consts.h', |
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 'metafile.h', |
40 'native_metafile_factory.h', | 40 'metafile_impl.h', |
41 'native_metafile.h', | |
42 'page_number.cc', | 41 'page_number.cc', |
43 'page_number.h', | 42 'page_number.h', |
44 'page_overlays.cc', | 43 'page_overlays.cc', |
45 'page_overlays.h', | 44 'page_overlays.h', |
46 'page_range.cc', | 45 'page_range.cc', |
47 'page_range.h', | 46 'page_range.h', |
48 'page_setup.cc', | 47 'page_setup.cc', |
49 'page_setup.h', | 48 'page_setup.h', |
50 'pdf_metafile_cairo_linux.cc', | 49 'pdf_metafile_cairo_linux.cc', |
51 'pdf_metafile_cairo_linux.h', | 50 'pdf_metafile_cairo_linux.h', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ | 92 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ |
94 'sources/': [['exclude', '_cairo\\.cc$']] | 93 'sources/': [['exclude', '_cairo\\.cc$']] |
95 }], | 94 }], |
96 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], | 95 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], |
97 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] | 96 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] |
98 }, { # else: OS=="win" | 97 }, { # else: OS=="win" |
99 'sources/': [['exclude', '_posix\\.cc$']] | 98 'sources/': [['exclude', '_posix\\.cc$']] |
100 }], | 99 }], |
101 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 100 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
102 'sources': [ | 101 'sources': [ |
103 'native_metafile_skia_wrapper.cc', | 102 'metafile_skia_wrapper.cc', |
104 'native_metafile_skia_wrapper.h', | 103 'metafile_skia_wrapper.h', |
105 ], | 104 ], |
106 'dependencies': [ | 105 'dependencies': [ |
107 # For FT_Init_FreeType and friends. | 106 # For FT_Init_FreeType and friends. |
108 '../build/linux/system.gyp:freetype2', | 107 '../build/linux/system.gyp:freetype2', |
109 '../build/linux/system.gyp:gtk', | 108 '../build/linux/system.gyp:gtk', |
110 '../build/linux/system.gyp:gtkprint', | 109 '../build/linux/system.gyp:gtkprint', |
111 ], | 110 ], |
112 }], | 111 }], |
113 ['OS=="mac"', | 112 ['OS=="mac"', |
114 {'sources/': [['exclude', 'pdf_metafile_skia\\.(cc|h)$']]} | 113 {'sources/': [['exclude', 'pdf_metafile_skia\\.(cc|h)$']]} |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 ], | 202 ], |
204 }, | 203 }, |
205 ], | 204 ], |
206 } | 205 } |
207 | 206 |
208 # Local Variables: | 207 # Local Variables: |
209 # tab-width:2 | 208 # tab-width:2 |
210 # indent-tabs-mode:nil | 209 # indent-tabs-mode:nil |
211 # End: | 210 # End: |
212 # vim: set expandtab tabstop=2 shiftwidth=2: | 211 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |