| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 ], | 82 ], |
| 83 'conditions': [ | 83 'conditions': [ |
| 84 ['OS!="linux"', {'sources/': [['exclude', '_gtk\\.cc$']]}], | 84 ['OS!="linux"', {'sources/': [['exclude', '_gtk\\.cc$']]}], |
| 85 ['OS!="mac"', { | 85 ['OS!="mac"', { |
| 86 'sources/': [ | 86 'sources/': [ |
| 87 ['exclude', 'mac/[^/]*\\.(cc|mm?)$'], | 87 ['exclude', 'mac/[^/]*\\.(cc|mm?)$'], |
| 88 ['exclude', '_mac\\.(cc|mm?)$'], | 88 ['exclude', '_mac\\.(cc|mm?)$'], |
| 89 ] | 89 ] |
| 90 }], | 90 }], |
| 91 ['OS=="win"', { | 91 ['OS=="win"', { |
| 92 'include_dirs': [ | 92 'msvs_disabled_warnings': [ 4800 ], |
| 93 '../../../breakpad/src', | 93 'link_settings': { |
| 94 'libraries': [ |
| 95 '-lcomctl32.lib', |
| 96 ], |
| 97 }, |
| 98 'dependencies': [ |
| 99 '../../../breakpad/breakpad.gyp:breakpad_handler', |
| 94 ], | 100 ], |
| 95 'msvs_disabled_warnings': [ 4800 ], | |
| 96 }, { # OS!=win | 101 }, { # OS!=win |
| 97 'sources/': [ | 102 'sources/': [ |
| 98 ['exclude', '_win\\.cc$'] | 103 ['exclude', '_win\\.cc$'] |
| 99 ], | 104 ], |
| 100 'sources!': [ | 105 'sources!': [ |
| 101 'drag_delegate.cc', | 106 'drag_delegate.cc', |
| 102 'drop_delegate.cc', | 107 'drop_delegate.cc', |
| 103 ], | 108 ], |
| 104 }], | 109 }], |
| 105 ], | 110 ], |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 'sources!': [ | 190 'sources!': [ |
| 186 '../../../skia/ext/vector_canvas_unittest.cc', | 191 '../../../skia/ext/vector_canvas_unittest.cc', |
| 187 '../webcore_unit_tests/UniscribeHelper_unittest.cpp', | 192 '../webcore_unit_tests/UniscribeHelper_unittest.cpp', |
| 188 'plugin_tests.cc' | 193 'plugin_tests.cc' |
| 189 ], | 194 ], |
| 190 }], | 195 }], |
| 191 ], | 196 ], |
| 192 }, | 197 }, |
| 193 ], | 198 ], |
| 194 } | 199 } |
| OLD | NEW |