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 51 matching lines...) Loading... |
62 "peerconnection.cc", | 62 "peerconnection.cc", |
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", |
| 73 "rtcstatsreport.h", |
72 "rtpparameters.h", | 74 "rtpparameters.h", |
73 "rtpreceiver.cc", | 75 "rtpreceiver.cc", |
74 "rtpreceiver.h", | 76 "rtpreceiver.h", |
75 "rtpreceiverinterface.h", | 77 "rtpreceiverinterface.h", |
76 "rtpsender.cc", | 78 "rtpsender.cc", |
77 "rtpsender.h", | 79 "rtpsender.h", |
78 "rtpsenderinterface.h", | 80 "rtpsenderinterface.h", |
79 "sctputils.cc", | 81 "sctputils.cc", |
80 "sctputils.h", | 82 "sctputils.h", |
81 "statscollector.cc", | 83 "statscollector.cc", |
(...skipping 349 matching lines...) Loading... |
431 | 433 |
432 shared_libraries = [ ":libjingle_peerconnection_so" ] | 434 shared_libraries = [ ":libjingle_peerconnection_so" ] |
433 } | 435 } |
434 | 436 |
435 android_resources("libjingle_peerconnection_android_unittest_resources") { | 437 android_resources("libjingle_peerconnection_android_unittest_resources") { |
436 resource_dirs = [ "androidtests/res" ] | 438 resource_dirs = [ "androidtests/res" ] |
437 custom_package = "org.webrtc" | 439 custom_package = "org.webrtc" |
438 } | 440 } |
439 } | 441 } |
440 } | 442 } |
OLD | NEW |