| 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', ], |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'rtc_p2p', | 13 'target_name': 'rtc_p2p', |
| 14 'type': 'static_library', | 14 'type': 'static_library', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 '<(webrtc_root)/base/base.gyp:rtc_base', | 16 '<(webrtc_root)/base/base.gyp:rtc_base', |
| 17 '<(webrtc_root)/common.gyp:webrtc_common', | 17 '<(webrtc_root)/common.gyp:webrtc_common', |
| 18 ], | 18 ], |
| 19 'cflags_cc!': [ | |
| 20 '-Wnon-virtual-dtor', | |
| 21 ], | |
| 22 'sources': [ | 19 'sources': [ |
| 23 'base/asyncstuntcpsocket.cc', | 20 'base/asyncstuntcpsocket.cc', |
| 24 'base/asyncstuntcpsocket.h', | 21 'base/asyncstuntcpsocket.h', |
| 25 'base/basicpacketsocketfactory.cc', | 22 'base/basicpacketsocketfactory.cc', |
| 26 'base/basicpacketsocketfactory.h', | 23 'base/basicpacketsocketfactory.h', |
| 27 'base/candidate.h', | 24 'base/candidate.h', |
| 28 'base/common.h', | 25 'base/common.h', |
| 29 'base/dtlstransportchannel.cc', | 26 'base/dtlstransportchannel.cc', |
| 30 'base/dtlstransportchannel.h', | 27 'base/dtlstransportchannel.h', |
| 31 'base/p2pconstants.cc', | 28 'base/p2pconstants.cc', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'base/turnserver.h', | 74 'base/turnserver.h', |
| 78 'base/udpport.h', | 75 'base/udpport.h', |
| 79 'client/basicportallocator.cc', | 76 'client/basicportallocator.cc', |
| 80 'client/basicportallocator.h', | 77 'client/basicportallocator.h', |
| 81 'client/httpportallocator.cc', | 78 'client/httpportallocator.cc', |
| 82 'client/httpportallocator.h', | 79 'client/httpportallocator.h', |
| 83 'client/socketmonitor.cc', | 80 'client/socketmonitor.cc', |
| 84 'client/socketmonitor.h', | 81 'client/socketmonitor.h', |
| 85 ], | 82 ], |
| 86 'direct_dependent_settings': { | 83 'direct_dependent_settings': { |
| 87 'cflags_cc!': [ | |
| 88 '-Wnon-virtual-dtor', | |
| 89 ], | |
| 90 'defines': [ | 84 'defines': [ |
| 91 'FEATURE_ENABLE_VOICEMAIL', | 85 'FEATURE_ENABLE_VOICEMAIL', |
| 92 ], | 86 ], |
| 93 }, | 87 }, |
| 94 'conditions': [ | 88 'conditions': [ |
| 95 ['build_with_chromium==0', { | 89 ['build_with_chromium==0', { |
| 96 'defines': [ | 90 'defines': [ |
| 97 'FEATURE_ENABLE_VOICEMAIL', | 91 'FEATURE_ENABLE_VOICEMAIL', |
| 98 'FEATURE_ENABLE_PSTN', | 92 'FEATURE_ENABLE_PSTN', |
| 99 ], | 93 ], |
| (...skipping 20 matching lines...) Expand all Loading... |
| 120 }], | 114 }], |
| 121 ], | 115 ], |
| 122 }, | 116 }, |
| 123 { | 117 { |
| 124 'target_name': 'libstunprober', | 118 'target_name': 'libstunprober', |
| 125 'type': 'static_library', | 119 'type': 'static_library', |
| 126 'dependencies': [ | 120 'dependencies': [ |
| 127 '<(webrtc_root)/base/base.gyp:rtc_base', | 121 '<(webrtc_root)/base/base.gyp:rtc_base', |
| 128 '<(webrtc_root)/common.gyp:webrtc_common', | 122 '<(webrtc_root)/common.gyp:webrtc_common', |
| 129 ], | 123 ], |
| 130 'cflags_cc!': [ | |
| 131 '-Wnon-virtual-dtor', | |
| 132 ], | |
| 133 'sources': [ | 124 'sources': [ |
| 134 'stunprober/stunprober.cc', | 125 'stunprober/stunprober.cc', |
| 135 ], | 126 ], |
| 136 }, | 127 }, |
| 137 { | 128 { |
| 138 'target_name': 'stun_prober', | 129 'target_name': 'stun_prober', |
| 139 'type': 'executable', | 130 'type': 'executable', |
| 140 'dependencies': [ | 131 'dependencies': [ |
| 141 'libstunprober', | 132 'libstunprober', |
| 142 'rtc_p2p' | 133 'rtc_p2p' |
| 143 ], | 134 ], |
| 144 'cflags_cc!': [ | |
| 145 '-Wnon-virtual-dtor', | |
| 146 ], | |
| 147 'sources': [ | 135 'sources': [ |
| 148 'stunprober/main.cc', | 136 'stunprober/main.cc', |
| 149 ], | 137 ], |
| 150 }, | 138 }, |
| 151 ], # targets | 139 ], # targets |
| 152 'conditions': [ | 140 'conditions': [ |
| 153 ['include_tests==1', { | 141 ['include_tests==1', { |
| 154 'targets' : [ | 142 'targets' : [ |
| 155 { | 143 { |
| 156 'target_name': 'rtc_p2p_unittest', | 144 'target_name': 'rtc_p2p_unittest', |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 ], | 178 ], |
| 191 }], | 179 }], |
| 192 ], | 180 ], |
| 193 }, | 181 }, |
| 194 }, # target rtc_p2p_unittest | 182 }, # target rtc_p2p_unittest |
| 195 ], # targets | 183 ], # targets |
| 196 }], # include_tests==1 | 184 }], # include_tests==1 |
| 197 ], # conditions | 185 ], # conditions |
| 198 } | 186 } |
| 199 | 187 |
| OLD | NEW |