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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'conditions': [ | 87 'conditions': [ |
88 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ | 88 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"',{ |
89 'sources/': [['exclude', '_cairo\\.cc$']] | 89 'sources/': [['exclude', '_cairo\\.cc$']] |
90 }], | 90 }], |
91 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], | 91 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], |
92 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] | 92 ['OS!="win"', {'sources/': [['exclude', '_win\\.cc$']] |
93 }, { # else: OS=="win" | 93 }, { # else: OS=="win" |
94 'sources/': [['exclude', '_posix\\.cc$']] | 94 'sources/': [['exclude', '_posix\\.cc$']] |
95 }], | 95 }], |
96 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 96 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 97 'sources': [ |
| 98 'native_metafile_skia_wrapper.cc', |
| 99 'native_metafile_skia_wrapper.h', |
| 100 ], |
97 'dependencies': [ | 101 'dependencies': [ |
98 # For FT_Init_FreeType and friends. | 102 # For FT_Init_FreeType and friends. |
99 '../build/linux/system.gyp:freetype2', | 103 '../build/linux/system.gyp:freetype2', |
100 '../build/linux/system.gyp:gtk', | 104 '../build/linux/system.gyp:gtk', |
101 '../build/linux/system.gyp:gtkprint', | 105 '../build/linux/system.gyp:gtkprint', |
102 ], | 106 ], |
103 }], | 107 }], |
104 ['OS=="win"', { | 108 ['OS=="win"', { |
105 'defines': [ | 109 'defines': [ |
106 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation | 110 # PRINT_BACKEND_AVAILABLE disables the default dummy implementation |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 ], | 195 ], |
192 }, | 196 }, |
193 ], | 197 ], |
194 } | 198 } |
195 | 199 |
196 # Local Variables: | 200 # Local Variables: |
197 # tab-width:2 | 201 # tab-width:2 |
198 # indent-tabs-mode:nil | 202 # indent-tabs-mode:nil |
199 # End: | 203 # End: |
200 # vim: set expandtab tabstop=2 shiftwidth=2: | 204 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |