| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 9 'includes': [ |
| 10 '../build/common.gypi', | 10 '../build/common.gypi', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 'printing_context_win.cc', | 55 'printing_context_win.cc', |
| 56 'units.cc', | 56 'units.cc', |
| 57 'units.h', | 57 'units.h', |
| 58 ], | 58 ], |
| 59 'direct_dependent_settings': { | 59 'direct_dependent_settings': { |
| 60 'include_dirs': [ | 60 'include_dirs': [ |
| 61 '..', | 61 '..', |
| 62 ], | 62 ], |
| 63 }, | 63 }, |
| 64 'conditions': [ | 64 'conditions': [ |
| 65 ['OS!="linux"', {'sources/': [['exclude', '_linux\\.cc$']]}], | 65 ['OS!="linux" and OS!="freebsd"', |
| 66 {'sources/': [['exclude', '_linux\\.cc$']]}], |
| 66 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], | 67 ['OS!="mac"', {'sources/': [['exclude', '_mac\\.(cc|mm?)$']]}], |
| 67 ['OS!="win"', { | 68 ['OS!="win"', { |
| 68 'sources/': [ | 69 'sources/': [ |
| 69 ['exclude', '_win\\.cc$'], | 70 ['exclude', '_win\\.cc$'], |
| 70 ['exclude', | 71 ['exclude', |
| 71 'printed_document.cc', | 72 'printed_document.cc', |
| 72 ] | 73 ] |
| 73 ] | 74 ] |
| 74 }, { # else: OS=="win" | 75 }, { # else: OS=="win" |
| 75 'sources/': [['exclude', '_posix\\.cc$']] | 76 'sources/': [['exclude', '_posix\\.cc$']] |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 '../base/base.gyp:base_gfx', | 119 '../base/base.gyp:base_gfx', |
| 119 ], | 120 ], |
| 120 'sources/': [ | 121 'sources/': [ |
| 121 ['include', 'pdf_ps_metafile_linux_unittest.cc'], | 122 ['include', 'pdf_ps_metafile_linux_unittest.cc'], |
| 122 ] | 123 ] |
| 123 }], | 124 }], |
| 124 ], | 125 ], |
| 125 }, | 126 }, |
| 126 ], | 127 ], |
| 127 } | 128 } |
| OLD | NEW |