OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'httpclient.h', | 214 'httpclient.h', |
215 'httpcommon-inl.h', | 215 'httpcommon-inl.h', |
216 'httpcommon.cc', | 216 'httpcommon.cc', |
217 'httpcommon.h', | 217 'httpcommon.h', |
218 'httprequest.cc', | 218 'httprequest.cc', |
219 'httprequest.h', | 219 'httprequest.h', |
220 'httpserver.cc', | 220 'httpserver.cc', |
221 'httpserver.h', | 221 'httpserver.h', |
222 'ifaddrs-android.cc', | 222 'ifaddrs-android.cc', |
223 'ifaddrs-android.h', | 223 'ifaddrs-android.h', |
| 224 'ifaddrs_converter.cc', |
| 225 'ifaddrs_converter.h', |
| 226 'macifaddrs_converter.cc', |
224 'iosfilesystem.mm', | 227 'iosfilesystem.mm', |
225 'ipaddress.cc', | 228 'ipaddress.cc', |
226 'ipaddress.h', | 229 'ipaddress.h', |
227 'json.cc', | 230 'json.cc', |
228 'json.h', | 231 'json.h', |
229 'latebindingsymboltable.cc', | 232 'latebindingsymboltable.cc', |
230 'latebindingsymboltable.h', | 233 'latebindingsymboltable.h', |
231 'libdbusglibsymboltable.cc', | 234 'libdbusglibsymboltable.cc', |
232 'libdbusglibsymboltable.h', | 235 'libdbusglibsymboltable.h', |
233 'linux.cc', | 236 'linux.cc', |
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
652 'macconversion.h', | 655 'macconversion.h', |
653 'macsocketserver.cc', | 656 'macsocketserver.cc', |
654 'macsocketserver.h', | 657 'macsocketserver.h', |
655 'macutils.cc', | 658 'macutils.cc', |
656 'macutils.h', | 659 'macutils.h', |
657 'macwindowpicker.cc', | 660 'macwindowpicker.cc', |
658 'macwindowpicker.h', | 661 'macwindowpicker.h', |
659 ], | 662 ], |
660 }], | 663 }], |
661 ['OS=="win"', { | 664 ['OS=="win"', { |
| 665 'sources!': [ |
| 666 'ifaddrs_converter.cc', |
| 667 ], |
662 'link_settings': { | 668 'link_settings': { |
663 'libraries': [ | 669 'libraries': [ |
664 '-lcrypt32.lib', | 670 '-lcrypt32.lib', |
665 '-liphlpapi.lib', | 671 '-liphlpapi.lib', |
666 '-lsecur32.lib', | 672 '-lsecur32.lib', |
667 ], | 673 ], |
668 }, | 674 }, |
669 # Suppress warnings about WIN32_LEAN_AND_MEAN. | 675 # Suppress warnings about WIN32_LEAN_AND_MEAN. |
670 'msvs_disabled_warnings': [4005, 4703], | 676 'msvs_disabled_warnings': [4005, 4703], |
671 'defines': [ | 677 'defines': [ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 }, | 709 }, |
704 } | 710 } |
705 }], | 711 }], |
706 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 712 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
707 'defines': [ | 713 'defines': [ |
708 'CARBON_DEPRECATED=YES', | 714 'CARBON_DEPRECATED=YES', |
709 ], | 715 ], |
710 }], | 716 }], |
711 ['OS!="ios" and OS!="mac"', { | 717 ['OS!="ios" and OS!="mac"', { |
712 'sources!': [ | 718 'sources!': [ |
| 719 'macifaddrs_converter.cc', |
713 'scoped_autorelease_pool.mm', | 720 'scoped_autorelease_pool.mm', |
714 ], | 721 ], |
715 }], | 722 }], |
716 ['OS!="linux" and OS!="android"', { | 723 ['OS!="linux" and OS!="android"', { |
717 'sources!': [ | 724 'sources!': [ |
718 'linux.cc', | 725 'linux.cc', |
719 'linux.h', | 726 'linux.h', |
720 ], | 727 ], |
721 }], | 728 }], |
722 ['build_ssl==1', { | 729 ['build_ssl==1', { |
723 'dependencies': [ | 730 'dependencies': [ |
724 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', | 731 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', |
725 ], | 732 ], |
726 }, { | 733 }, { |
727 'include_dirs': [ | 734 'include_dirs': [ |
728 '<(ssl_root)', | 735 '<(ssl_root)', |
729 ], | 736 ], |
730 }], | 737 }], |
731 ], | 738 ], |
732 }, | 739 }, |
733 ], | 740 ], |
734 } | 741 } |
OLD | NEW |