OLD | NEW |
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 import("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 "rtpsender.cc", | 94 "rtpsender.cc", |
95 "rtpsender.h", | 95 "rtpsender.h", |
96 "rtpsenderinterface.h", | 96 "rtpsenderinterface.h", |
97 "sctputils.cc", | 97 "sctputils.cc", |
98 "sctputils.h", | 98 "sctputils.h", |
99 "statscollector.cc", | 99 "statscollector.cc", |
100 "statscollector.h", | 100 "statscollector.h", |
101 "statstypes.cc", | 101 "statstypes.cc", |
102 "statstypes.h", | 102 "statstypes.h", |
103 "streamcollection.h", | 103 "streamcollection.h", |
| 104 "trackmediainfomap.cc", |
| 105 "trackmediainfomap.h", |
104 "videocapturertracksource.cc", | 106 "videocapturertracksource.cc", |
105 "videocapturertracksource.h", | 107 "videocapturertracksource.h", |
106 "videosourceproxy.h", | 108 "videosourceproxy.h", |
107 "videotrack.cc", | 109 "videotrack.cc", |
108 "videotrack.h", | 110 "videotrack.h", |
109 "videotracksource.cc", | 111 "videotracksource.cc", |
110 "videotracksource.h", | 112 "videotracksource.h", |
111 "webrtcsdp.cc", | 113 "webrtcsdp.cc", |
112 "webrtcsdp.h", | 114 "webrtcsdp.h", |
113 "webrtcsession.cc", | 115 "webrtcsession.cc", |
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 "rtpsenderreceiver_unittest.cc", | 242 "rtpsenderreceiver_unittest.cc", |
241 "sctputils_unittest.cc", | 243 "sctputils_unittest.cc", |
242 "statscollector_unittest.cc", | 244 "statscollector_unittest.cc", |
243 "test/fakeaudiocapturemodule.cc", | 245 "test/fakeaudiocapturemodule.cc", |
244 "test/fakeaudiocapturemodule.h", | 246 "test/fakeaudiocapturemodule.h", |
245 "test/fakeaudiocapturemodule_unittest.cc", | 247 "test/fakeaudiocapturemodule_unittest.cc", |
246 "test/fakeconstraints.h", | 248 "test/fakeconstraints.h", |
247 "test/fakedatachannelprovider.h", | 249 "test/fakedatachannelprovider.h", |
248 "test/fakeperiodicvideocapturer.h", | 250 "test/fakeperiodicvideocapturer.h", |
249 "test/fakertccertificategenerator.h", | 251 "test/fakertccertificategenerator.h", |
| 252 "test/fakertpsenderreceiver.cc", |
| 253 "test/fakertpsenderreceiver.h", |
250 "test/fakevideotrackrenderer.h", | 254 "test/fakevideotrackrenderer.h", |
251 "test/mock_datachannel.h", | 255 "test/mock_datachannel.h", |
252 "test/mock_peerconnection.h", | 256 "test/mock_peerconnection.h", |
253 "test/mock_webrtcsession.h", | 257 "test/mock_webrtcsession.h", |
254 "test/mockpeerconnectionobservers.h", | 258 "test/mockpeerconnectionobservers.h", |
255 "test/peerconnectiontestwrapper.cc", | 259 "test/peerconnectiontestwrapper.cc", |
256 "test/peerconnectiontestwrapper.h", | 260 "test/peerconnectiontestwrapper.h", |
257 "test/rtcstatsobtainer.h", | 261 "test/rtcstatsobtainer.h", |
258 "test/testsdpstrings.h", | 262 "test/testsdpstrings.h", |
| 263 "trackmediainfomap_unittest.cc", |
259 "videocapturertracksource_unittest.cc", | 264 "videocapturertracksource_unittest.cc", |
260 "videotrack_unittest.cc", | 265 "videotrack_unittest.cc", |
261 "webrtcsdp_unittest.cc", | 266 "webrtcsdp_unittest.cc", |
262 "webrtcsession_unittest.cc", | 267 "webrtcsession_unittest.cc", |
263 ] | 268 ] |
264 | 269 |
265 if (rtc_enable_sctp) { | 270 if (rtc_enable_sctp) { |
266 defines = [ "HAVE_SCTP" ] | 271 defines = [ "HAVE_SCTP" ] |
267 } | 272 } |
268 | 273 |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 public_deps = [ | 337 public_deps = [ |
333 ":audio_mixer_api", | 338 ":audio_mixer_api", |
334 ] | 339 ] |
335 | 340 |
336 deps = [ | 341 deps = [ |
337 "//testing/gmock", | 342 "//testing/gmock", |
338 "//webrtc/test:test_support", | 343 "//webrtc/test:test_support", |
339 ] | 344 ] |
340 } | 345 } |
341 } | 346 } |
OLD | NEW |