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