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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 "fakemetricsobserver.h", | 374 "fakemetricsobserver.h", |
375 "jsepsessiondescription_unittest.cc", | 375 "jsepsessiondescription_unittest.cc", |
376 "localaudiosource_unittest.cc", | 376 "localaudiosource_unittest.cc", |
377 "mediaconstraintsinterface_unittest.cc", | 377 "mediaconstraintsinterface_unittest.cc", |
378 "mediastream_unittest.cc", | 378 "mediastream_unittest.cc", |
379 "peerconnection_unittest.cc", | 379 "peerconnection_unittest.cc", |
380 "peerconnectionendtoend_unittest.cc", | 380 "peerconnectionendtoend_unittest.cc", |
381 "peerconnectionfactory_unittest.cc", | 381 "peerconnectionfactory_unittest.cc", |
382 "peerconnectioninterface_unittest.cc", | 382 "peerconnectioninterface_unittest.cc", |
383 "proxy_unittest.cc", | 383 "proxy_unittest.cc", |
| 384 "rtcstats_integrationtest.cc", |
384 "rtcstatscollector_unittest.cc", | 385 "rtcstatscollector_unittest.cc", |
385 "rtpsenderreceiver_unittest.cc", | 386 "rtpsenderreceiver_unittest.cc", |
386 "sctputils_unittest.cc", | 387 "sctputils_unittest.cc", |
387 "statscollector_unittest.cc", | 388 "statscollector_unittest.cc", |
388 "test/fakeaudiocapturemodule.cc", | 389 "test/fakeaudiocapturemodule.cc", |
389 "test/fakeaudiocapturemodule.h", | 390 "test/fakeaudiocapturemodule.h", |
390 "test/fakeaudiocapturemodule_unittest.cc", | 391 "test/fakeaudiocapturemodule_unittest.cc", |
391 "test/fakeconstraints.h", | 392 "test/fakeconstraints.h", |
392 "test/fakedatachannelprovider.h", | 393 "test/fakedatachannelprovider.h", |
393 "test/fakeperiodicvideocapturer.h", | 394 "test/fakeperiodicvideocapturer.h", |
394 "test/fakertccertificategenerator.h", | 395 "test/fakertccertificategenerator.h", |
395 "test/fakevideotrackrenderer.h", | 396 "test/fakevideotrackrenderer.h", |
396 "test/mock_datachannel.h", | 397 "test/mock_datachannel.h", |
397 "test/mock_peerconnection.h", | 398 "test/mock_peerconnection.h", |
398 "test/mock_webrtcsession.h", | 399 "test/mock_webrtcsession.h", |
399 "test/mockpeerconnectionobservers.h", | 400 "test/mockpeerconnectionobservers.h", |
400 "test/peerconnectiontestwrapper.cc", | 401 "test/peerconnectiontestwrapper.cc", |
401 "test/peerconnectiontestwrapper.h", | 402 "test/peerconnectiontestwrapper.h", |
| 403 "test/rtcstatsobtainer.h", |
402 "test/testsdpstrings.h", | 404 "test/testsdpstrings.h", |
403 "videocapturertracksource_unittest.cc", | 405 "videocapturertracksource_unittest.cc", |
404 "videotrack_unittest.cc", | 406 "videotrack_unittest.cc", |
405 "webrtcsdp_unittest.cc", | 407 "webrtcsdp_unittest.cc", |
406 "webrtcsession_unittest.cc", | 408 "webrtcsession_unittest.cc", |
407 ] | 409 ] |
408 | 410 |
409 defines = [ "HAVE_SCTP" ] | 411 defines = [ "HAVE_SCTP" ] |
410 | 412 |
411 configs += [ ":peerconnection_unittests_config" ] | 413 configs += [ ":peerconnection_unittests_config" ] |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
489 deps = [ | 491 deps = [ |
490 ":libjingle_peerconnection_java", | 492 ":libjingle_peerconnection_java", |
491 "../base:base_java", | 493 "../base:base_java", |
492 "//base:base_java", | 494 "//base:base_java", |
493 ] | 495 ] |
494 | 496 |
495 shared_libraries = [ ":libjingle_peerconnection_so" ] | 497 shared_libraries = [ ":libjingle_peerconnection_so" ] |
496 } | 498 } |
497 } | 499 } |
498 } | 500 } |
OLD | NEW |