| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'sources/': [ | 7 'sources/': [ |
| 8 ['exclude', '/win/'], | 8 ['exclude', '/win/'], |
| 9 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'], | 9 ['exclude', '_(posix|win)(_unittest)?\\.(cc|mm?)$'], |
| 10 ['exclude', '/win_[^/]*\\.cc$'], | 10 ['exclude', '/win_[^/]*\\.cc$'], |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'ipc_tests.cc', | 51 'ipc_tests.cc', |
| 52 'ipc_tests.h', | 52 'ipc_tests.h', |
| 53 'sync_socket_unittest.cc', | 53 'sync_socket_unittest.cc', |
| 54 ], | 54 ], |
| 55 'conditions': [ | 55 'conditions': [ |
| 56 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 56 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 57 'dependencies': [ | 57 'dependencies': [ |
| 58 '../build/linux/system.gyp:gtk', | 58 '../build/linux/system.gyp:gtk', |
| 59 ], | 59 ], |
| 60 }], | 60 }], |
| 61 ['OS=="linux" and toolkit_views==1', { | |
| 62 'dependencies': [ | |
| 63 '../views/views.gyp:views', | |
| 64 ], | |
| 65 }], | |
| 66 ['OS=="linux"', { | 61 ['OS=="linux"', { |
| 67 'conditions': [ | 62 'conditions': [ |
| 68 ['linux_use_tcmalloc==1', { | 63 ['linux_use_tcmalloc==1', { |
| 69 'dependencies': [ | 64 'dependencies': [ |
| 70 '../base/allocator/allocator.gyp:allocator', | 65 '../base/allocator/allocator.gyp:allocator', |
| 71 ], | 66 ], |
| 72 }], | 67 }], |
| 73 ], | 68 ], |
| 74 }] | 69 }] |
| 75 ], | 70 ], |
| 76 }, | 71 }, |
| 77 ], | 72 ], |
| 78 } | 73 } |
| 79 | 74 |
| 80 # Local Variables: | 75 # Local Variables: |
| 81 # tab-width:2 | 76 # tab-width:2 |
| 82 # indent-tabs-mode:nil | 77 # indent-tabs-mode:nil |
| 83 # End: | 78 # End: |
| 84 # vim: set expandtab tabstop=2 shiftwidth=2: | 79 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |