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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "peerconnection.h", | 63 "peerconnection.h", |
64 "peerconnectionfactory.cc", | 64 "peerconnectionfactory.cc", |
65 "peerconnectionfactory.h", | 65 "peerconnectionfactory.h", |
66 "peerconnectionfactoryproxy.h", | 66 "peerconnectionfactoryproxy.h", |
67 "peerconnectioninterface.h", | 67 "peerconnectioninterface.h", |
68 "peerconnectionproxy.h", | 68 "peerconnectionproxy.h", |
69 "proxy.h", | 69 "proxy.h", |
70 "remoteaudiosource.cc", | 70 "remoteaudiosource.cc", |
71 "remoteaudiosource.h", | 71 "remoteaudiosource.h", |
72 "rtcstats.h", | 72 "rtcstats.h", |
| 73 "rtcstats_objects.h", |
73 "rtcstatsreport.h", | 74 "rtcstatsreport.h", |
74 "rtpparameters.h", | 75 "rtpparameters.h", |
75 "rtpreceiver.cc", | 76 "rtpreceiver.cc", |
76 "rtpreceiver.h", | 77 "rtpreceiver.h", |
77 "rtpreceiverinterface.h", | 78 "rtpreceiverinterface.h", |
78 "rtpsender.cc", | 79 "rtpsender.cc", |
79 "rtpsender.h", | 80 "rtpsender.h", |
80 "rtpsenderinterface.h", | 81 "rtpsenderinterface.h", |
81 "sctputils.cc", | 82 "sctputils.cc", |
82 "sctputils.h", | 83 "sctputils.h", |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 "rtpsenderreceiver_unittest.cc", | 335 "rtpsenderreceiver_unittest.cc", |
335 "statscollector_unittest.cc", | 336 "statscollector_unittest.cc", |
336 "test/fakeaudiocapturemodule.cc", | 337 "test/fakeaudiocapturemodule.cc", |
337 "test/fakeaudiocapturemodule.h", | 338 "test/fakeaudiocapturemodule.h", |
338 "test/fakeaudiocapturemodule_unittest.cc", | 339 "test/fakeaudiocapturemodule_unittest.cc", |
339 "test/fakeconstraints.h", | 340 "test/fakeconstraints.h", |
340 "test/fakedatachannelprovider.h", | 341 "test/fakedatachannelprovider.h", |
341 "test/fakeperiodicvideocapturer.h", | 342 "test/fakeperiodicvideocapturer.h", |
342 "test/fakertccertificategenerator.h", | 343 "test/fakertccertificategenerator.h", |
343 "test/fakevideotrackrenderer.h", | 344 "test/fakevideotrackrenderer.h", |
| 345 "test/mock_datachannel.h", |
344 "test/mock_peerconnection.h", | 346 "test/mock_peerconnection.h", |
345 "test/mock_webrtcsession.h", | 347 "test/mock_webrtcsession.h", |
346 "test/mockpeerconnectionobservers.h", | 348 "test/mockpeerconnectionobservers.h", |
347 "test/peerconnectiontestwrapper.cc", | 349 "test/peerconnectiontestwrapper.cc", |
348 "test/peerconnectiontestwrapper.h", | 350 "test/peerconnectiontestwrapper.h", |
349 "test/testsdpstrings.h", | 351 "test/testsdpstrings.h", |
350 "videocapturertracksource_unittest.cc", | 352 "videocapturertracksource_unittest.cc", |
351 "videotrack_unittest.cc", | 353 "videotrack_unittest.cc", |
352 "webrtcsdp_unittest.cc", | 354 "webrtcsdp_unittest.cc", |
353 "webrtcsession_unittest.cc", | 355 "webrtcsession_unittest.cc", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 | 446 |
445 shared_libraries = [ ":libjingle_peerconnection_so" ] | 447 shared_libraries = [ ":libjingle_peerconnection_so" ] |
446 } | 448 } |
447 | 449 |
448 android_resources("libjingle_peerconnection_android_unittest_resources") { | 450 android_resources("libjingle_peerconnection_android_unittest_resources") { |
449 resource_dirs = [ "androidtests/res" ] | 451 resource_dirs = [ "androidtests/res" ] |
450 custom_package = "org.webrtc" | 452 custom_package = "org.webrtc" |
451 } | 453 } |
452 } | 454 } |
453 } | 455 } |
OLD | NEW |