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