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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 "rtpsenderreceiver_unittest.cc", | 240 "rtpsenderreceiver_unittest.cc", |
241 "sctputils_unittest.cc", | 241 "sctputils_unittest.cc", |
242 "statscollector_unittest.cc", | 242 "statscollector_unittest.cc", |
243 "test/fakeaudiocapturemodule.cc", | 243 "test/fakeaudiocapturemodule.cc", |
244 "test/fakeaudiocapturemodule.h", | 244 "test/fakeaudiocapturemodule.h", |
245 "test/fakeaudiocapturemodule_unittest.cc", | 245 "test/fakeaudiocapturemodule_unittest.cc", |
246 "test/fakeconstraints.h", | 246 "test/fakeconstraints.h", |
247 "test/fakedatachannelprovider.h", | 247 "test/fakedatachannelprovider.h", |
248 "test/fakeperiodicvideocapturer.h", | 248 "test/fakeperiodicvideocapturer.h", |
249 "test/fakertccertificategenerator.h", | 249 "test/fakertccertificategenerator.h", |
| 250 "test/fakertpsenderreceiver.h", |
250 "test/fakevideotrackrenderer.h", | 251 "test/fakevideotrackrenderer.h", |
251 "test/mock_datachannel.h", | 252 "test/mock_datachannel.h", |
252 "test/mock_peerconnection.h", | 253 "test/mock_peerconnection.h", |
253 "test/mock_webrtcsession.h", | 254 "test/mock_webrtcsession.h", |
254 "test/mockpeerconnectionobservers.h", | 255 "test/mockpeerconnectionobservers.h", |
255 "test/peerconnectiontestwrapper.cc", | 256 "test/peerconnectiontestwrapper.cc", |
256 "test/peerconnectiontestwrapper.h", | 257 "test/peerconnectiontestwrapper.h", |
257 "test/rtcstatsobtainer.h", | 258 "test/rtcstatsobtainer.h", |
258 "test/testsdpstrings.h", | 259 "test/testsdpstrings.h", |
259 "videocapturertracksource_unittest.cc", | 260 "videocapturertracksource_unittest.cc", |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 public_deps = [ | 333 public_deps = [ |
333 ":audio_mixer_api", | 334 ":audio_mixer_api", |
334 ] | 335 ] |
335 | 336 |
336 deps = [ | 337 deps = [ |
337 "//testing/gmock", | 338 "//testing/gmock", |
338 "//webrtc/test:test_support", | 339 "//webrtc/test:test_support", |
339 ] | 340 ] |
340 } | 341 } |
341 } | 342 } |
OLD | NEW |