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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 ['OS=="win"', { | 209 ['OS=="win"', { |
210 'sources': [ | 210 'sources': [ |
211 'files/talk/base/convert.h', # win32 only | 211 'files/talk/base/convert.h', # win32 only |
212 'files/talk/base/diskcache_win32.cc', # win32 only | 212 'files/talk/base/diskcache_win32.cc', # win32 only |
213 'files/talk/base/diskcache_win32.h', # win32 only | 213 'files/talk/base/diskcache_win32.h', # win32 only |
214 'files/talk/base/schanneladapter.cc', | 214 'files/talk/base/schanneladapter.cc', |
215 'files/talk/base/schanneladapter.h', | 215 'files/talk/base/schanneladapter.h', |
216 'files/talk/base/win32.h', | 216 'files/talk/base/win32.h', |
217 'files/talk/base/win32filesystem.cc', | 217 'files/talk/base/win32filesystem.cc', |
218 'files/talk/base/win32filesystem.h', | 218 'files/talk/base/win32filesystem.h', |
219 'files/talk/base/win32socketserver.cc', | |
220 'files/talk/base/win32socketserver.h', | |
221 'files/talk/base/win32window.h', | 219 'files/talk/base/win32window.h', |
222 'files/talk/base/win32window.cc', | 220 'files/talk/base/win32window.cc', |
223 'files/talk/base/winfirewall.cc', | 221 'files/talk/base/winfirewall.cc', |
224 'files/talk/base/winfirewall.h', | 222 'files/talk/base/winfirewall.h', |
225 'files/talk/base/winping.cc', | 223 'files/talk/base/winping.cc', |
226 'files/talk/base/winping.h', | 224 'files/talk/base/winping.h', |
227 'overrides/talk/base/winsock_initializer.cc', | 225 'overrides/talk/base/winsock_initializer.cc', |
228 ], | 226 ], |
229 }], | 227 }], |
230 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { | 228 ['OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="openbsd"', { |
231 'sources': [ | 229 'sources': [ |
232 'files/talk/base/unixfilesystem.cc', | 230 'files/talk/base/unixfilesystem.cc', |
233 ], | 231 ], |
234 }], | 232 }], |
235 ], | 233 ], |
236 }, | 234 }, |
237 ], | 235 ], |
238 } | 236 } |
239 | 237 |
240 # Local Variables: | 238 # Local Variables: |
241 # tab-width:2 | 239 # tab-width:2 |
242 # indent-tabs-mode:nil | 240 # indent-tabs-mode:nil |
243 # End: | 241 # End: |
244 # vim: set expandtab tabstop=2 shiftwidth=2: | 242 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |