Chromium Code Reviews| Index: webrtc/base/base.gyp |
| diff --git a/webrtc/base/base.gyp b/webrtc/base/base.gyp |
| index 77cd011f1c1dce05f8977213db701fdd948728cd..5377e316e084f495baa3bd68adbfa0f4d7cedb81 100644 |
| --- a/webrtc/base/base.gyp |
| +++ b/webrtc/base/base.gyp |
| @@ -206,6 +206,9 @@ |
| 'httpserver.h', |
| 'ifaddrs-android.cc', |
| 'ifaddrs-android.h', |
| + 'ifaddrs_converter.cc', |
| + 'ifaddrs_converter.h', |
| + 'mac_ifaddrs_converter.cc', |
| 'iosfilesystem.mm', |
| 'ipaddress.cc', |
| 'ipaddress.h', |
| @@ -633,6 +636,9 @@ |
| ], |
| }], |
| ['OS=="win"', { |
| + 'sources!': [ |
| + 'ifaddrs_converter.cc', |
|
pthatcher1
2015/12/18 19:51:20
Why shouldn't windows have this file?
guoweis_webrtc
2015/12/21 20:26:33
Only POSIX systems use ifaddrs structure.
|
| + ], |
| 'link_settings': { |
| 'libraries': [ |
| '-lcrypt32.lib', |
| @@ -684,6 +690,7 @@ |
| }], |
| ['OS!="ios" and OS!="mac"', { |
| 'sources!': [ |
| + 'mac_ifaddrs_converter.cc', |
| 'scoped_autorelease_pool.mm', |
| ], |
| }], |