| 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 20 matching lines...) Expand all Loading... |
| 31 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { | 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_win7/files/Include', |
| 42 ], | 42 ], |
| 43 }], | 43 }], |
| 44 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { | 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': [ |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |