| 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 10 matching lines...) Expand all Loading... |
| 21 'direct_dependent_settings': { | 21 'direct_dependent_settings': { |
| 22 'include_dirs': [ | 22 'include_dirs': [ |
| 23 './overrides', | 23 './overrides', |
| 24 './files', | 24 './files', |
| 25 ], | 25 ], |
| 26 'defines': [ | 26 'defines': [ |
| 27 'FEATURE_ENABLE_SSL', | 27 'FEATURE_ENABLE_SSL', |
| 28 'FEATURE_ENABLE_VOICEMAIL', | 28 'FEATURE_ENABLE_VOICEMAIL', |
| 29 ], | 29 ], |
| 30 'conditions': [ | 30 'conditions': [ |
| 31 ['OS=="linux" or OS=="mac"', { | 31 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { |
| 32 'defines': [ | 32 'defines': [ |
| 33 'POSIX', | 33 'POSIX', |
| 34 ], | 34 ], |
| 35 }], | 35 }], |
| 36 ], | 36 ], |
| 37 }, | 37 }, |
| 38 'conditions': [ | 38 'conditions': [ |
| 39 ['OS=="win"', { | 39 ['OS=="win"', { |
| 40 'include_dirs': [ | 40 'include_dirs': [ |
| 41 '../third_party/platformsdk_win2008_6_1/files/Include', | 41 '../third_party/platformsdk_win2008_6_1/files/Include', |
| 42 ], | 42 ], |
| 43 }], | 43 }], |
| 44 ['OS=="linux" or OS=="mac"', { | 44 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { |
| 45 'defines': [ | 45 'defines': [ |
| 46 'POSIX', | 46 'POSIX', |
| 47 ], | 47 ], |
| 48 }], | 48 }], |
| 49 ], | 49 ], |
| 50 }, | 50 }, |
| 51 'targets': [ | 51 'targets': [ |
| 52 { | 52 { |
| 53 'target_name': 'libjingle', | 53 'target_name': 'libjingle', |
| 54 'type': '<(library)', | 54 'type': '<(library)', |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 'files/talk/base/win32socketserver.cc', | 265 'files/talk/base/win32socketserver.cc', |
| 266 'files/talk/base/win32socketserver.h', | 266 'files/talk/base/win32socketserver.h', |
| 267 'files/talk/base/win32window.h', | 267 'files/talk/base/win32window.h', |
| 268 'files/talk/base/winfirewall.cc', | 268 'files/talk/base/winfirewall.cc', |
| 269 'files/talk/base/winfirewall.h', | 269 'files/talk/base/winfirewall.h', |
| 270 'files/talk/base/winping.cc', | 270 'files/talk/base/winping.cc', |
| 271 'files/talk/base/winping.h', | 271 'files/talk/base/winping.h', |
| 272 'overrides/talk/base/winsock_initializer.cc', | 272 'overrides/talk/base/winsock_initializer.cc', |
| 273 ], | 273 ], |
| 274 }], | 274 }], |
| 275 ['OS=="linux" or OS=="mac"', { | 275 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { |
| 276 'sources': [ | 276 'sources': [ |
| 277 'files/talk/base/unixfilesystem.cc', | 277 'files/talk/base/unixfilesystem.cc', |
| 278 ], | 278 ], |
| 279 }], | 279 }], |
| 280 ], | 280 ], |
| 281 }, | 281 }, |
| 282 ], | 282 ], |
| 283 } | 283 } |
| 284 | 284 |
| 285 # Local Variables: | 285 # Local Variables: |
| 286 # tab-width:2 | 286 # tab-width:2 |
| 287 # indent-tabs-mode:nil | 287 # indent-tabs-mode:nil |
| 288 # End: | 288 # End: |
| 289 # vim: set expandtab tabstop=2 shiftwidth=2: | 289 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |