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 'defines': [ | 7 'defines': [ |
8 'FEATURE_ENABLE_SSL', | 8 'FEATURE_ENABLE_SSL', |
9 'FEATURE_ENABLE_VOICEMAIL', # TODO(ncarter): Do we really need this? | 9 'FEATURE_ENABLE_VOICEMAIL', # TODO(ncarter): Do we really need this? |
10 '_USE_32BIT_TIME_T', | 10 '_USE_32BIT_TIME_T', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 ['OS=="win"', { | 47 ['OS=="win"', { |
48 'include_dirs': [ | 48 'include_dirs': [ |
49 '../third_party/platformsdk_win7/files/Include', | 49 '../third_party/platformsdk_win7/files/Include', |
50 ], | 50 ], |
51 }], | 51 }], |
52 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { | 52 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { |
53 'defines': [ | 53 'defines': [ |
54 'POSIX', | 54 'POSIX', |
55 ], | 55 ], |
56 }], | 56 }], |
| 57 ['OS=="openbsd" or OS=="freebsd"', { |
| 58 'defines': [ |
| 59 'BSD', |
| 60 ], |
| 61 }], |
57 ], | 62 ], |
58 }, | 63 }, |
59 'targets': [ | 64 'targets': [ |
60 { | 65 { |
61 'target_name': 'libjingle', | 66 'target_name': 'libjingle', |
62 'type': '<(library)', | 67 'type': '<(library)', |
63 'sources': [ | 68 'sources': [ |
64 | 69 |
65 # everything in files/talk/p2p is unneeded and has been removed | 70 # everything in files/talk/p2p is unneeded and has been removed |
66 # 'files/talk/base/Equifax_Secure_Global_eBusiness_CA-1.h', # openssl | 71 # 'files/talk/base/Equifax_Secure_Global_eBusiness_CA-1.h', # openssl |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 ], | 246 ], |
242 }, | 247 }, |
243 ], | 248 ], |
244 } | 249 } |
245 | 250 |
246 # Local Variables: | 251 # Local Variables: |
247 # tab-width:2 | 252 # tab-width:2 |
248 # indent-tabs-mode:nil | 253 # indent-tabs-mode:nil |
249 # End: | 254 # End: |
250 # vim: set expandtab tabstop=2 shiftwidth=2: | 255 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |