| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 rtc_static_library("libjingle_peerconnection") { | 81 rtc_static_library("libjingle_peerconnection") { |
| 82 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 82 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 83 cflags = [] | 83 cflags = [] |
| 84 sources = [ | 84 sources = [ |
| 85 "audiotrack.cc", | 85 "audiotrack.cc", |
| 86 "audiotrack.h", | 86 "audiotrack.h", |
| 87 "datachannel.cc", | 87 "datachannel.cc", |
| 88 "datachannel.h", | 88 "datachannel.h", |
| 89 "dtmfsender.cc", | 89 "dtmfsender.cc", |
| 90 "dtmfsender.h", | 90 "dtmfsender.h", |
| 91 "iceserverparsing.cc", |
| 92 "iceserverparsing.h", |
| 91 "jsepicecandidate.cc", | 93 "jsepicecandidate.cc", |
| 92 "jsepsessiondescription.cc", | 94 "jsepsessiondescription.cc", |
| 93 "localaudiosource.cc", | 95 "localaudiosource.cc", |
| 94 "localaudiosource.h", | 96 "localaudiosource.h", |
| 95 "mediacontroller.cc", | 97 "mediacontroller.cc", |
| 96 "mediacontroller.h", | 98 "mediacontroller.h", |
| 97 "mediastream.cc", | 99 "mediastream.cc", |
| 98 "mediastream.h", | 100 "mediastream.h", |
| 99 "mediastreamobserver.cc", | 101 "mediastreamobserver.cc", |
| 100 "mediastreamobserver.h", | 102 "mediastreamobserver.h", |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 } | 273 } |
| 272 } | 274 } |
| 273 | 275 |
| 274 rtc_test("peerconnection_unittests") { | 276 rtc_test("peerconnection_unittests") { |
| 275 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 277 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 276 testonly = true | 278 testonly = true |
| 277 sources = [ | 279 sources = [ |
| 278 "datachannel_unittest.cc", | 280 "datachannel_unittest.cc", |
| 279 "dtmfsender_unittest.cc", | 281 "dtmfsender_unittest.cc", |
| 280 "fakemediacontroller.h", | 282 "fakemediacontroller.h", |
| 283 "iceserverparsing_unittest.cc", |
| 281 "jsepsessiondescription_unittest.cc", | 284 "jsepsessiondescription_unittest.cc", |
| 282 "localaudiosource_unittest.cc", | 285 "localaudiosource_unittest.cc", |
| 283 "mediaconstraintsinterface_unittest.cc", | 286 "mediaconstraintsinterface_unittest.cc", |
| 284 "mediastream_unittest.cc", | 287 "mediastream_unittest.cc", |
| 285 "peerconnection_unittest.cc", | 288 "peerconnection_integrationtest.cc", |
| 286 "peerconnectionendtoend_unittest.cc", | 289 "peerconnectionendtoend_unittest.cc", |
| 287 "peerconnectionfactory_unittest.cc", | 290 "peerconnectionfactory_unittest.cc", |
| 288 "peerconnectioninterface_unittest.cc", | 291 "peerconnectioninterface_unittest.cc", |
| 289 "proxy_unittest.cc", | 292 "proxy_unittest.cc", |
| 290 "rtcstats_integrationtest.cc", | 293 "rtcstats_integrationtest.cc", |
| 291 "rtcstatscollector_unittest.cc", | 294 "rtcstatscollector_unittest.cc", |
| 292 "rtpsenderreceiver_unittest.cc", | 295 "rtpsenderreceiver_unittest.cc", |
| 293 "sctputils_unittest.cc", | 296 "sctputils_unittest.cc", |
| 294 "statscollector_unittest.cc", | 297 "statscollector_unittest.cc", |
| 295 "test/fakeaudiocapturemodule_unittest.cc", | 298 "test/fakeaudiocapturemodule_unittest.cc", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 "//testing/gmock", | 360 "//testing/gmock", |
| 358 ] | 361 ] |
| 359 | 362 |
| 360 if (is_android) { | 363 if (is_android) { |
| 361 deps += [ "//testing/android/native_test:native_test_support" ] | 364 deps += [ "//testing/android/native_test:native_test_support" ] |
| 362 | 365 |
| 363 shard_timeout = 900 | 366 shard_timeout = 900 |
| 364 } | 367 } |
| 365 } | 368 } |
| 366 } | 369 } |
| OLD | NEW |