| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "peerconnection.cc", | 108 "peerconnection.cc", |
| 109 "peerconnection.h", | 109 "peerconnection.h", |
| 110 "peerconnectionfactory.cc", | 110 "peerconnectionfactory.cc", |
| 111 "peerconnectionfactory.h", | 111 "peerconnectionfactory.h", |
| 112 "remoteaudiosource.cc", | 112 "remoteaudiosource.cc", |
| 113 "remoteaudiosource.h", | 113 "remoteaudiosource.h", |
| 114 "rtcstatscollector.cc", | 114 "rtcstatscollector.cc", |
| 115 "rtcstatscollector.h", | 115 "rtcstatscollector.h", |
| 116 "rtpreceiver.cc", | 116 "rtpreceiver.cc", |
| 117 "rtpreceiver.h", | 117 "rtpreceiver.h", |
| 118 "rtpreceivershim.cc", |
| 119 "rtpreceivershim.h", |
| 118 "rtpsender.cc", | 120 "rtpsender.cc", |
| 119 "rtpsender.h", | 121 "rtpsender.h", |
| 122 "rtpsendershim.cc", |
| 123 "rtpsendershim.h", |
| 124 "rtptransportcontrollershim.cc", |
| 125 "rtptransportcontrollershim.h", |
| 126 "rtptransportshim.cc", |
| 127 "rtptransportshim.h", |
| 120 "sctputils.cc", | 128 "sctputils.cc", |
| 121 "sctputils.h", | 129 "sctputils.h", |
| 122 "statscollector.cc", | 130 "statscollector.cc", |
| 123 "statscollector.h", | 131 "statscollector.h", |
| 124 "streamcollection.h", | 132 "streamcollection.h", |
| 125 "videocapturertracksource.cc", | 133 "videocapturertracksource.cc", |
| 126 "videocapturertracksource.h", | 134 "videocapturertracksource.h", |
| 127 "videotrack.cc", | 135 "videotrack.cc", |
| 128 "videotrack.h", | 136 "videotrack.h", |
| 129 "videotracksource.cc", | 137 "videotracksource.cc", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 255 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 248 testonly = true | 256 testonly = true |
| 249 sources = [ | 257 sources = [ |
| 250 "datachannel_unittest.cc", | 258 "datachannel_unittest.cc", |
| 251 "dtmfsender_unittest.cc", | 259 "dtmfsender_unittest.cc", |
| 252 "fakemediacontroller.h", | 260 "fakemediacontroller.h", |
| 253 "jsepsessiondescription_unittest.cc", | 261 "jsepsessiondescription_unittest.cc", |
| 254 "localaudiosource_unittest.cc", | 262 "localaudiosource_unittest.cc", |
| 255 "mediaconstraintsinterface_unittest.cc", | 263 "mediaconstraintsinterface_unittest.cc", |
| 256 "mediastream_unittest.cc", | 264 "mediastream_unittest.cc", |
| 257 "ortcfactory_unittest.cc", | 265 "ortcfactory_integrationtest.cc", |
| 258 "peerconnection_unittest.cc", | 266 "peerconnection_unittest.cc", |
| 259 "peerconnectionendtoend_unittest.cc", | 267 "peerconnectionendtoend_unittest.cc", |
| 260 "peerconnectionfactory_unittest.cc", | 268 "peerconnectionfactory_unittest.cc", |
| 261 "peerconnectioninterface_unittest.cc", | 269 "peerconnectioninterface_unittest.cc", |
| 262 "proxy_unittest.cc", | 270 "proxy_unittest.cc", |
| 263 "rtcstats_integrationtest.cc", | 271 "rtcstats_integrationtest.cc", |
| 264 "rtcstatscollector_unittest.cc", | 272 "rtcstatscollector_unittest.cc", |
| 265 "rtpsenderreceiver_unittest.cc", | 273 "rtpsenderreceiver_unittest.cc", |
| 266 "sctputils_unittest.cc", | 274 "sctputils_unittest.cc", |
| 267 "statscollector_unittest.cc", | 275 "statscollector_unittest.cc", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 "//testing/gmock", | 350 "//testing/gmock", |
| 343 ] | 351 ] |
| 344 | 352 |
| 345 if (is_android) { | 353 if (is_android) { |
| 346 deps += [ "//testing/android/native_test:native_test_support" ] | 354 deps += [ "//testing/android/native_test:native_test_support" ] |
| 347 | 355 |
| 348 shard_timeout = 900 | 356 shard_timeout = 900 |
| 349 } | 357 } |
| 350 } | 358 } |
| 351 } | 359 } |
| OLD | NEW |