| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'includes': [ | 6 'includes': [ |
| 7 '../../build/win_precompile.gypi', | 7 '../../build/win_precompile.gypi', |
| 8 ], | 8 ], |
| 9 # Most of these settings have been split according to their scope into | 9 # Most of these settings have been split according to their scope into |
| 10 # :jingle_unexported_configs and :jingle_public_config in the GN build. | 10 # :jingle_unexported_configs and :jingle_public_config in the GN build. |
| 11 'target_defaults': { | 11 'target_defaults': { |
| 12 'defines': [ | |
| 13 'ENABLE_EXTERNAL_AUTH', | |
| 14 'EXPAT_RELATIVE_PATH', | |
| 15 'FEATURE_ENABLE_SSL', | |
| 16 'GTEST_RELATIVE_PATH', | |
| 17 'HAVE_OPENSSL_SSL_H', | |
| 18 'HAVE_SCTP', | |
| 19 'HAVE_SRTP', | |
| 20 'HAVE_WEBRTC_VIDEO', | |
| 21 'HAVE_WEBRTC_VOICE', | |
| 22 'LOGGING_INSIDE_WEBRTC', | |
| 23 'NO_MAIN_THREAD_WRAPPING', | |
| 24 'NO_SOUND_SYSTEM', | |
| 25 'SRTP_RELATIVE_PATH', | |
| 26 'SSL_USE_OPENSSL', | |
| 27 'USE_WEBRTC_DEV_BRANCH', | |
| 28 'WEBRTC_CHROMIUM_BUILD', | |
| 29 ], | |
| 30 'include_dirs': [ | 12 'include_dirs': [ |
| 31 '../../third_party/webrtc_overrides', | 13 '../../third_party/webrtc_overrides', |
| 32 '../..', | 14 '../..', |
| 33 '../../testing/gtest/include', | 15 '../../testing/gtest/include', |
| 34 '../../third_party', | 16 '../../third_party', |
| 35 '../../third_party/libyuv/include', | 17 '../../third_party/libyuv/include', |
| 36 '../../third_party/usrsctp/usrsctplib', | 18 '../../third_party/usrsctp/usrsctplib', |
| 37 ], | 19 ], |
| 38 # These dependencies have been translated into :jingle_deps in the GN build. | 20 # These dependencies have been translated into :jingle_deps in the GN build. |
| 39 'dependencies': [ | 21 'dependencies': [ |
| 40 '<(DEPTH)/base/base.gyp:base', | 22 '<(DEPTH)/base/base.gyp:base', |
| 41 '<(DEPTH)/net/net.gyp:net', | 23 '<(DEPTH)/net/net.gyp:net', |
| 42 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', | 24 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl', |
| 43 '<(DEPTH)/third_party/expat/expat.gyp:expat', | 25 '<(DEPTH)/third_party/expat/expat.gyp:expat', |
| 44 ], | 26 ], |
| 45 'export_dependent_settings': [ | 27 'export_dependent_settings': [ |
| 46 '<(DEPTH)/third_party/expat/expat.gyp:expat', | 28 '<(DEPTH)/third_party/expat/expat.gyp:expat', |
| 47 ], | 29 ], |
| 48 'direct_dependent_settings': { | 30 'direct_dependent_settings': { |
| 49 'include_dirs': [ | 31 'include_dirs': [ |
| 50 '../../third_party/webrtc_overrides', | 32 '../../third_party/webrtc_overrides', |
| 51 '../..', | 33 '../..', |
| 52 '../../testing/gtest/include', | 34 '../../testing/gtest/include', |
| 53 '../../third_party', | 35 '../../third_party', |
| 54 ], | 36 ], |
| 55 'defines': [ | |
| 56 'FEATURE_ENABLE_SSL', | |
| 57 'FEATURE_ENABLE_VOICEMAIL', | |
| 58 'EXPAT_RELATIVE_PATH', | |
| 59 'GTEST_RELATIVE_PATH', | |
| 60 'NO_MAIN_THREAD_WRAPPING', | |
| 61 'NO_SOUND_SYSTEM', | |
| 62 ], | |
| 63 'conditions': [ | 37 'conditions': [ |
| 64 ['OS=="win"', { | 38 ['OS=="win"', { |
| 65 'link_settings': { | 39 'link_settings': { |
| 66 'libraries': [ | 40 'libraries': [ |
| 67 '-lsecur32.lib', | 41 '-lsecur32.lib', |
| 68 '-lcrypt32.lib', | 42 '-lcrypt32.lib', |
| 69 '-liphlpapi.lib', | 43 '-liphlpapi.lib', |
| 70 ], | 44 ], |
| 71 }, | 45 }, |
| 72 }], | 46 }], |
| 73 ['OS=="win"', { | 47 ['OS=="win"', { |
| 74 'include_dirs': [ | 48 'include_dirs': [ |
| 75 '../third_party/platformsdk_win7/files/Include', | 49 '../third_party/platformsdk_win7/files/Include', |
| 76 ], | 50 ], |
| 77 'defines': [ | |
| 78 '_CRT_SECURE_NO_WARNINGS', # Suppres warnings about _vsnprinf | |
| 79 ], | |
| 80 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 51 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 81 'msvs_disabled_warnings': [ 4267 ], | 52 'msvs_disabled_warnings': [ 4267 ], |
| 82 }], | 53 }], |
| 83 ['OS=="linux"', { | |
| 84 'defines': [ | |
| 85 'LINUX', | |
| 86 'WEBRTC_LINUX', | |
| 87 ], | |
| 88 }], | |
| 89 ['OS=="mac"', { | |
| 90 'defines': [ | |
| 91 'OSX', | |
| 92 'WEBRTC_MAC', | |
| 93 ], | |
| 94 }], | |
| 95 ['OS=="ios"', { | |
| 96 'defines': [ | |
| 97 'IOS', | |
| 98 'WEBRTC_MAC', | |
| 99 'WEBRTC_IOS', | |
| 100 ], | |
| 101 }], | |
| 102 ['OS=="win"', { | |
| 103 'defines': [ | |
| 104 'WEBRTC_WIN', | |
| 105 ], | |
| 106 }], | |
| 107 ['OS=="android"', { | |
| 108 'defines': [ | |
| 109 'ANDROID', | |
| 110 ], | |
| 111 }], | |
| 112 ['os_posix==1', { | |
| 113 'defines': [ | |
| 114 'WEBRTC_POSIX', | |
| 115 ], | |
| 116 }], | |
| 117 ['os_bsd==1', { | |
| 118 'defines': [ | |
| 119 'BSD', | |
| 120 ], | |
| 121 }], | |
| 122 ['OS=="openbsd"', { | |
| 123 'defines': [ | |
| 124 'OPENBSD', | |
| 125 ], | |
| 126 }], | |
| 127 ['OS=="freebsd"', { | |
| 128 'defines': [ | |
| 129 'FREEBSD', | |
| 130 ], | |
| 131 }], | |
| 132 ['chromeos==1', { | |
| 133 'defines': [ | |
| 134 'CHROMEOS', | |
| 135 ], | |
| 136 }], | |
| 137 ], | 54 ], |
| 138 }, | 55 }, |
| 139 'variables': { | 56 'variables': { |
| 140 'clang_warning_flags_unset': [ | 57 'clang_warning_flags_unset': [ |
| 141 # Don't warn about string->bool used in asserts. | 58 # Don't warn about string->bool used in asserts. |
| 142 '-Wstring-conversion', | 59 '-Wstring-conversion', |
| 143 ], | 60 ], |
| 144 }, | 61 }, |
| 145 'conditions': [ | 62 'conditions': [ |
| 146 ['OS=="win"', { | 63 ['OS=="win"', { |
| 147 'include_dirs': [ | 64 'include_dirs': [ |
| 148 '../third_party/platformsdk_win7/files/Include', | 65 '../third_party/platformsdk_win7/files/Include', |
| 149 ], | 66 ], |
| 150 }], | 67 }], |
| 151 ['OS=="linux"', { | |
| 152 'defines': [ | |
| 153 'LINUX', | |
| 154 'WEBRTC_LINUX', | |
| 155 ], | |
| 156 }], | |
| 157 ['OS=="mac"', { | |
| 158 'defines': [ | |
| 159 'OSX', | |
| 160 'WEBRTC_MAC', | |
| 161 ], | |
| 162 }], | |
| 163 ['OS=="win"', { | |
| 164 'defines': [ | |
| 165 'WEBRTC_WIN', | |
| 166 ], | |
| 167 }], | |
| 168 ['OS=="ios"', { | |
| 169 'defines': [ | |
| 170 'IOS', | |
| 171 'WEBRTC_MAC', | |
| 172 'WEBRTC_IOS', | |
| 173 ], | |
| 174 }], | |
| 175 ['os_posix == 1', { | |
| 176 'defines': [ | |
| 177 'WEBRTC_POSIX', | |
| 178 ], | |
| 179 }], | |
| 180 ['os_bsd==1', { | |
| 181 'defines': [ | |
| 182 'BSD', | |
| 183 ], | |
| 184 }], | |
| 185 ['OS=="openbsd"', { | |
| 186 'defines': [ | |
| 187 'OPENBSD', | |
| 188 ], | |
| 189 }], | |
| 190 ['OS=="freebsd"', { | |
| 191 'defines': [ | |
| 192 'FREEBSD', | |
| 193 ], | |
| 194 }], | |
| 195 ], | 68 ], |
| 196 }, | 69 }, |
| 197 'targets': [ | 70 'targets': [ |
| 198 # GN version: //third_party/libjingle | 71 # GN version: //third_party/libjingle |
| 199 { | 72 { |
| 200 'target_name': 'libjingle', | 73 'target_name': 'libjingle', |
| 201 'type': 'static_library', | 74 'type': 'static_library', |
| 202 'includes': [ 'libjingle_common.gypi' ], | 75 'includes': [ 'libjingle_common.gypi' ], |
| 203 'dependencies': [ | 76 'dependencies': [ |
| 204 '<(DEPTH)/third_party/webrtc/base/base.gyp:rtc_base', | 77 '<(DEPTH)/third_party/webrtc/base/base.gyp:rtc_base', |
| 205 '<(DEPTH)/third_party/webrtc/libjingle/xmllite/xmllite.gyp:rtc_xmllite', | 78 '<(DEPTH)/third_party/webrtc/p2p/p2p.gyp:rtc_p2p', |
| 79 ], |
| 80 # TODO(kjellander): Start cleaning up this target as soon as |
| 81 # https://codereview.chromium.org/2022833002/ is landed. The target should |
| 82 # be removed entirely if possible. |
| 83 'export_dependent_settings': [ |
| 84 '<(DEPTH)/third_party/webrtc/base/base.gyp:rtc_base', |
| 85 '<(DEPTH)/third_party/webrtc/p2p/p2p.gyp:rtc_p2p', |
| 206 ], | 86 ], |
| 207 }, # target libjingle | 87 }, # target libjingle |
| 208 ], | 88 ], |
| 209 'conditions': [ | 89 'conditions': [ |
| 210 ['enable_webrtc==1', { | 90 ['enable_webrtc==1', { |
| 211 'targets': [ | 91 'targets': [ |
| 212 { | 92 { |
| 213 # GN version: //third_party/libjingle:libjingle_webrtc_common | 93 # GN version: //third_party/libjingle:libjingle_webrtc_common |
| 214 'target_name': 'libjingle_webrtc_common', | 94 'target_name': 'libjingle_webrtc_common', |
| 215 'type': 'static_library', | 95 'type': 'static_library', |
| 216 'sources': [ | |
| 217 '<(DEPTH)/third_party/webrtc/api/audiotrack.cc', | |
| 218 '<(DEPTH)/third_party/webrtc/api/audiotrack.h', | |
| 219 '<(DEPTH)/third_party/webrtc/api/datachannel.cc', | |
| 220 '<(DEPTH)/third_party/webrtc/api/datachannel.h', | |
| 221 '<(DEPTH)/third_party/webrtc/api/dtmfsender.cc', | |
| 222 '<(DEPTH)/third_party/webrtc/api/dtmfsender.h', | |
| 223 '<(DEPTH)/third_party/webrtc/api/jsep.h', | |
| 224 '<(DEPTH)/third_party/webrtc/api/jsepicecandidate.cc', | |
| 225 '<(DEPTH)/third_party/webrtc/api/jsepicecandidate.h', | |
| 226 '<(DEPTH)/third_party/webrtc/api/jsepsessiondescription.cc', | |
| 227 '<(DEPTH)/third_party/webrtc/api/jsepsessiondescription.h', | |
| 228 '<(DEPTH)/third_party/webrtc/api/localaudiosource.cc', | |
| 229 '<(DEPTH)/third_party/webrtc/api/localaudiosource.h', | |
| 230 '<(DEPTH)/third_party/webrtc/api/mediaconstraintsinterface.cc', | |
| 231 '<(DEPTH)/third_party/webrtc/api/mediaconstraintsinterface.h', | |
| 232 '<(DEPTH)/third_party/webrtc/api/mediacontroller.cc', | |
| 233 '<(DEPTH)/third_party/webrtc/api/mediacontroller.h', | |
| 234 '<(DEPTH)/third_party/webrtc/api/mediastream.cc', | |
| 235 '<(DEPTH)/third_party/webrtc/api/mediastream.h', | |
| 236 '<(DEPTH)/third_party/webrtc/api/mediastreaminterface.h', | |
| 237 '<(DEPTH)/third_party/webrtc/api/mediastreamobserver.cc', | |
| 238 '<(DEPTH)/third_party/webrtc/api/mediastreamobserver.h', | |
| 239 '<(DEPTH)/third_party/webrtc/api/mediastreamprovider.h', | |
| 240 '<(DEPTH)/third_party/webrtc/api/mediastreamproxy.h', | |
| 241 '<(DEPTH)/third_party/webrtc/api/mediastreamtrack.h', | |
| 242 '<(DEPTH)/third_party/webrtc/api/mediastreamtrackproxy.h', | |
| 243 '<(DEPTH)/third_party/webrtc/api/notifier.h', | |
| 244 '<(DEPTH)/third_party/webrtc/api/peerconnection.cc', | |
| 245 '<(DEPTH)/third_party/webrtc/api/peerconnection.h', | |
| 246 '<(DEPTH)/third_party/webrtc/api/peerconnectionfactory.cc', | |
| 247 '<(DEPTH)/third_party/webrtc/api/peerconnectionfactory.h', | |
| 248 '<(DEPTH)/third_party/webrtc/api/peerconnectioninterface.h', | |
| 249 '<(DEPTH)/third_party/webrtc/api/remoteaudiosource.cc', | |
| 250 '<(DEPTH)/third_party/webrtc/api/remoteaudiosource.h', | |
| 251 '<(DEPTH)/third_party/webrtc/api/rtpreceiver.cc', | |
| 252 '<(DEPTH)/third_party/webrtc/api/rtpreceiver.h', | |
| 253 '<(DEPTH)/third_party/webrtc/api/rtpreceiverinterface.h', | |
| 254 '<(DEPTH)/third_party/webrtc/api/rtpsender.cc', | |
| 255 '<(DEPTH)/third_party/webrtc/api/rtpsender.h', | |
| 256 '<(DEPTH)/third_party/webrtc/api/rtpsenderinterface.h', | |
| 257 '<(DEPTH)/third_party/webrtc/api/sctputils.cc', | |
| 258 '<(DEPTH)/third_party/webrtc/api/sctputils.h', | |
| 259 '<(DEPTH)/third_party/webrtc/api/statscollector.cc', | |
| 260 '<(DEPTH)/third_party/webrtc/api/statscollector.h', | |
| 261 '<(DEPTH)/third_party/webrtc/api/statstypes.cc', | |
| 262 '<(DEPTH)/third_party/webrtc/api/statstypes.h', | |
| 263 '<(DEPTH)/third_party/webrtc/api/streamcollection.h', | |
| 264 '<(DEPTH)/third_party/webrtc/api/umametrics.h', | |
| 265 '<(DEPTH)/third_party/webrtc/api/videocapturertracksource.cc', | |
| 266 '<(DEPTH)/third_party/webrtc/api/videocapturertracksource.h', | |
| 267 '<(DEPTH)/third_party/webrtc/api/videosourceproxy.h', | |
| 268 '<(DEPTH)/third_party/webrtc/api/videotrack.cc', | |
| 269 '<(DEPTH)/third_party/webrtc/api/videotrack.h', | |
| 270 '<(DEPTH)/third_party/webrtc/api/videotracksource.cc', | |
| 271 '<(DEPTH)/third_party/webrtc/api/videotracksource.h', | |
| 272 '<(DEPTH)/third_party/webrtc/api/webrtcsdp.cc', | |
| 273 '<(DEPTH)/third_party/webrtc/api/webrtcsdp.h', | |
| 274 '<(DEPTH)/third_party/webrtc/api/webrtcsession.cc', | |
| 275 '<(DEPTH)/third_party/webrtc/api/webrtcsession.h', | |
| 276 '<(DEPTH)/third_party/webrtc/api/webrtcsessiondescriptionfactory.cc'
, | |
| 277 '<(DEPTH)/third_party/webrtc/api/webrtcsessiondescriptionfactory.h', | |
| 278 '<(DEPTH)/third_party/webrtc/media/base/codec.cc', | |
| 279 '<(DEPTH)/third_party/webrtc/media/base/codec.h', | |
| 280 '<(DEPTH)/third_party/webrtc/media/base/cryptoparams.h', | |
| 281 '<(DEPTH)/third_party/webrtc/media/base/hybriddataengine.h', | |
| 282 '<(DEPTH)/third_party/webrtc/media/base/mediachannel.h', | |
| 283 '<(DEPTH)/third_party/webrtc/media/base/mediaconstants.cc', | |
| 284 '<(DEPTH)/third_party/webrtc/media/base/mediaconstants.h', | |
| 285 '<(DEPTH)/third_party/webrtc/media/base/mediaengine.cc', | |
| 286 '<(DEPTH)/third_party/webrtc/media/base/mediaengine.h', | |
| 287 '<(DEPTH)/third_party/webrtc/media/base/rtpdataengine.cc', | |
| 288 '<(DEPTH)/third_party/webrtc/media/base/rtpdataengine.h', | |
| 289 '<(DEPTH)/third_party/webrtc/media/base/rtpdump.cc', | |
| 290 '<(DEPTH)/third_party/webrtc/media/base/rtpdump.h', | |
| 291 '<(DEPTH)/third_party/webrtc/media/base/rtputils.cc', | |
| 292 '<(DEPTH)/third_party/webrtc/media/base/rtputils.h', | |
| 293 '<(DEPTH)/third_party/webrtc/media/base/streamparams.cc', | |
| 294 '<(DEPTH)/third_party/webrtc/media/base/streamparams.h', | |
| 295 '<(DEPTH)/third_party/webrtc/media/base/turnutils.cc', | |
| 296 '<(DEPTH)/third_party/webrtc/media/base/turnutils.h', | |
| 297 '<(DEPTH)/third_party/webrtc/media/base/videoadapter.cc', | |
| 298 '<(DEPTH)/third_party/webrtc/media/base/videoadapter.h', | |
| 299 '<(DEPTH)/third_party/webrtc/media/base/videobroadcaster.cc', | |
| 300 '<(DEPTH)/third_party/webrtc/media/base/videobroadcaster.h', | |
| 301 '<(DEPTH)/third_party/webrtc/media/base/videocapturer.cc', | |
| 302 '<(DEPTH)/third_party/webrtc/media/base/videocapturer.h', | |
| 303 '<(DEPTH)/third_party/webrtc/media/base/videocommon.cc', | |
| 304 '<(DEPTH)/third_party/webrtc/media/base/videocommon.h', | |
| 305 '<(DEPTH)/third_party/webrtc/media/base/videoframe.cc', | |
| 306 '<(DEPTH)/third_party/webrtc/media/base/videoframe.h', | |
| 307 '<(DEPTH)/third_party/webrtc/media/base/videoframefactory.cc', | |
| 308 '<(DEPTH)/third_party/webrtc/media/base/videoframefactory.h', | |
| 309 '<(DEPTH)/third_party/webrtc/media/base/videosourcebase.cc', | |
| 310 '<(DEPTH)/third_party/webrtc/media/base/videosourcebase.h', | |
| 311 '<(DEPTH)/third_party/webrtc/media/engine/simulcast.cc', | |
| 312 '<(DEPTH)/third_party/webrtc/media/engine/simulcast.h', | |
| 313 '<(DEPTH)/third_party/webrtc/media/engine/webrtccommon.h', | |
| 314 '<(DEPTH)/third_party/webrtc/media/engine/webrtcmediaengine.cc', | |
| 315 '<(DEPTH)/third_party/webrtc/media/engine/webrtcmediaengine.h', | |
| 316 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvideoengine2.cc', | |
| 317 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvideoengine2.h', | |
| 318 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvideoframe.cc', | |
| 319 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvideoframe.h', | |
| 320 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvideoframefactory.cc
', | |
| 321 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvideoframefactory.h'
, | |
| 322 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvoe.h', | |
| 323 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvoiceengine.cc', | |
| 324 '<(DEPTH)/third_party/webrtc/media/engine/webrtcvoiceengine.h', | |
| 325 '<(DEPTH)/third_party/webrtc/media/sctp/sctpdataengine.cc', | |
| 326 '<(DEPTH)/third_party/webrtc/media/sctp/sctpdataengine.h', | |
| 327 '<(DEPTH)/third_party/webrtc/pc/audiomonitor.cc', | |
| 328 '<(DEPTH)/third_party/webrtc/pc/audiomonitor.h', | |
| 329 '<(DEPTH)/third_party/webrtc/pc/bundlefilter.cc', | |
| 330 '<(DEPTH)/third_party/webrtc/pc/bundlefilter.h', | |
| 331 '<(DEPTH)/third_party/webrtc/pc/channel.cc', | |
| 332 '<(DEPTH)/third_party/webrtc/pc/channel.h', | |
| 333 '<(DEPTH)/third_party/webrtc/pc/channelmanager.cc', | |
| 334 '<(DEPTH)/third_party/webrtc/pc/channelmanager.h', | |
| 335 '<(DEPTH)/third_party/webrtc/pc/currentspeakermonitor.cc', | |
| 336 '<(DEPTH)/third_party/webrtc/pc/currentspeakermonitor.h', | |
| 337 '<(DEPTH)/third_party/webrtc/pc/externalhmac.cc', | |
| 338 '<(DEPTH)/third_party/webrtc/pc/externalhmac.h', | |
| 339 '<(DEPTH)/third_party/webrtc/pc/mediamonitor.cc', | |
| 340 '<(DEPTH)/third_party/webrtc/pc/mediamonitor.h', | |
| 341 '<(DEPTH)/third_party/webrtc/pc/mediasession.cc', | |
| 342 '<(DEPTH)/third_party/webrtc/pc/mediasession.h', | |
| 343 '<(DEPTH)/third_party/webrtc/pc/mediasink.h', | |
| 344 '<(DEPTH)/third_party/webrtc/pc/rtcpmuxfilter.cc', | |
| 345 '<(DEPTH)/third_party/webrtc/pc/rtcpmuxfilter.h', | |
| 346 '<(DEPTH)/third_party/webrtc/pc/srtpfilter.cc', | |
| 347 '<(DEPTH)/third_party/webrtc/pc/srtpfilter.h', | |
| 348 '<(DEPTH)/third_party/webrtc/pc/voicechannel.h', | |
| 349 ], | |
| 350 'dependencies': [ | 96 'dependencies': [ |
| 351 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp', | 97 '<(DEPTH)/third_party/libsrtp/libsrtp.gyp:libsrtp', |
| 352 '<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib', | 98 '<(DEPTH)/third_party/usrsctp/usrsctp.gyp:usrsctplib', |
| 99 '<(DEPTH)/third_party/webrtc/api/api.gyp:libjingle_peerconnection', |
| 100 '<(DEPTH)/third_party/webrtc/media/media.gyp:rtc_media', |
| 353 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:media_file', | 101 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:media_file', |
| 354 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:video_capture', | 102 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:video_capture', |
| 103 '<(DEPTH)/third_party/webrtc/pc/pc.gyp:rtc_pc', |
| 355 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_eng
ine', | 104 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_eng
ine', |
| 356 '<(DEPTH)/third_party/webrtc/webrtc.gyp:webrtc', | 105 '<(DEPTH)/third_party/webrtc/webrtc.gyp:webrtc', |
| 357 'libjingle', | 106 'libjingle', |
| 358 ], | 107 ], |
| 359 }, # target libjingle_webrtc_common | 108 }, # target libjingle_webrtc_common |
| 360 { | 109 { |
| 361 # TODO(kjellander): Move this target into | 110 # TODO(kjellander): Move this target into |
| 362 # //third_party/webrtc_overrides as soon as the work in | 111 # //third_party/webrtc_overrides as soon as the work in |
| 363 # bugs.webrtc.org/4256 has gotten rid of the duplicated source | 112 # bugs.webrtc.org/4256 has gotten rid of the duplicated source |
| 364 # listings above. | 113 # listings above. |
| 365 # GN version: //third_party/libjingle:libjingle_webrtc | 114 # GN version: //third_party/libjingle:libjingle_webrtc |
| 366 'target_name': 'libjingle_webrtc', | 115 'target_name': 'libjingle_webrtc', |
| 367 'type': 'static_library', | 116 'type': 'static_library', |
| 368 'sources': [ | 117 'sources': [ |
| 369 '../webrtc_overrides/init_webrtc.cc', | 118 '../webrtc_overrides/init_webrtc.cc', |
| 370 '../webrtc_overrides/init_webrtc.h', | 119 '../webrtc_overrides/init_webrtc.h', |
| 371 ], | 120 ], |
| 372 'dependencies': [ | 121 'dependencies': [ |
| 373 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:audio_processing', | 122 '<(DEPTH)/third_party/webrtc/modules/modules.gyp:audio_processing', |
| 374 'libjingle_webrtc_common', | 123 'libjingle_webrtc_common', |
| 375 ], | 124 ], |
| 376 }, | 125 }, |
| 377 ], | 126 ], |
| 378 }], | 127 }], |
| 379 ], | 128 ], |
| 380 } | 129 } |
| OLD | NEW |