| 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 'includes': [ | 6 'includes': [ |
| 7 '../build/common.gypi', | 7 '../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'sources/': [ | 10 'sources/': [ |
| 11 ['exclude', '/win/'], | 11 ['exclude', '/win/'], |
| 12 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'], | 12 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'], |
| 13 ['exclude', '/win_[^/]*\\.cc$'], | 13 ['exclude', '/win_[^/]*\\.cc$'], |
| 14 ], | 14 ], |
| 15 'conditions': [ | 15 'conditions': [ |
| 16 ['OS=="linux"', {'sources/': [ | 16 ['OS=="linux" or OS=="freebsd"', {'sources/': [ |
| 17 ['include', '_posix(_unittest)?\\.cc$'], | 17 ['include', '_posix(_unittest)?\\.cc$'], |
| 18 ]}], | 18 ]}], |
| 19 ['OS=="mac"', {'sources/': [ | 19 ['OS=="mac"', {'sources/': [ |
| 20 ['include', '_posix(_unittest)?\\.(cc|mm?)$'], | 20 ['include', '_posix(_unittest)?\\.(cc|mm?)$'], |
| 21 ]}], | 21 ]}], |
| 22 ['OS=="win"', {'sources/': [ | 22 ['OS=="win"', {'sources/': [ |
| 23 ['include', '_win(_unittest)?\\.cc$'], | 23 ['include', '_win(_unittest)?\\.cc$'], |
| 24 ['include', '/win/'], | 24 ['include', '/win/'], |
| 25 ['include', '/win_[^/]*\\.cc$'], | 25 ['include', '/win_[^/]*\\.cc$'], |
| 26 ]}], | 26 ]}], |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 'ipc_fuzzing_tests.cc', | 85 'ipc_fuzzing_tests.cc', |
| 86 'ipc_message_unittest.cc', | 86 'ipc_message_unittest.cc', |
| 87 'ipc_send_fds_test.cc', | 87 'ipc_send_fds_test.cc', |
| 88 'ipc_sync_channel_unittest.cc', | 88 'ipc_sync_channel_unittest.cc', |
| 89 'ipc_sync_message_unittest.cc', | 89 'ipc_sync_message_unittest.cc', |
| 90 'ipc_sync_message_unittest.h', | 90 'ipc_sync_message_unittest.h', |
| 91 'ipc_tests.cc', | 91 'ipc_tests.cc', |
| 92 'ipc_tests.h', | 92 'ipc_tests.h', |
| 93 ], | 93 ], |
| 94 'conditions': [ | 94 'conditions': [ |
| 95 ['OS=="linux"', { | 95 ['OS=="linux" or OS=="freebsd"', { |
| 96 'dependencies': [ | 96 'dependencies': [ |
| 97 '../build/linux/system.gyp:gtk', | 97 '../build/linux/system.gyp:gtk', |
| 98 ], | 98 ], |
| 99 }], | 99 }], |
| 100 ['OS=="linux" and toolkit_views==1', { | 100 ['OS=="linux" and toolkit_views==1', { |
| 101 'dependencies': [ | 101 'dependencies': [ |
| 102 '../views/views.gyp:views', | 102 '../views/views.gyp:views', |
| 103 ], | 103 ], |
| 104 }], | 104 }], |
| 105 ], | 105 ], |
| 106 }, | 106 }, |
| 107 ] | 107 ] |
| 108 } | 108 } |
| OLD | NEW |