| 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 20 matching lines...) Expand all Loading... |
| 31 "audiomonitor.cc", | 31 "audiomonitor.cc", |
| 32 "audiomonitor.h", | 32 "audiomonitor.h", |
| 33 "bundlefilter.cc", | 33 "bundlefilter.cc", |
| 34 "bundlefilter.h", | 34 "bundlefilter.h", |
| 35 "channel.cc", | 35 "channel.cc", |
| 36 "channel.h", | 36 "channel.h", |
| 37 "channelmanager.cc", | 37 "channelmanager.cc", |
| 38 "channelmanager.h", | 38 "channelmanager.h", |
| 39 "currentspeakermonitor.cc", | 39 "currentspeakermonitor.cc", |
| 40 "currentspeakermonitor.h", | 40 "currentspeakermonitor.h", |
| 41 "dtlssrtptransport.cc", |
| 42 "dtlssrtptransport.h", |
| 41 "externalhmac.cc", | 43 "externalhmac.cc", |
| 42 "externalhmac.h", | 44 "externalhmac.h", |
| 43 "mediamonitor.cc", | 45 "mediamonitor.cc", |
| 44 "mediamonitor.h", | 46 "mediamonitor.h", |
| 45 "mediasession.cc", | 47 "mediasession.cc", |
| 46 "mediasession.h", | 48 "mediasession.h", |
| 47 "rtcpmuxfilter.cc", | 49 "rtcpmuxfilter.cc", |
| 48 "rtcpmuxfilter.h", | 50 "rtcpmuxfilter.h", |
| 49 "rtptransport.cc", | 51 "rtptransport.cc", |
| 50 "rtptransport.h", | 52 "rtptransport.h", |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 } | 256 } |
| 255 | 257 |
| 256 rtc_test("rtc_pc_unittests") { | 258 rtc_test("rtc_pc_unittests") { |
| 257 testonly = true | 259 testonly = true |
| 258 | 260 |
| 259 sources = [ | 261 sources = [ |
| 260 "bundlefilter_unittest.cc", | 262 "bundlefilter_unittest.cc", |
| 261 "channel_unittest.cc", | 263 "channel_unittest.cc", |
| 262 "channelmanager_unittest.cc", | 264 "channelmanager_unittest.cc", |
| 263 "currentspeakermonitor_unittest.cc", | 265 "currentspeakermonitor_unittest.cc", |
| 266 "dtlssrtptransport_unittest.cc", |
| 264 "mediasession_unittest.cc", | 267 "mediasession_unittest.cc", |
| 265 "rtcpmuxfilter_unittest.cc", | 268 "rtcpmuxfilter_unittest.cc", |
| 266 "rtptransport_unittest.cc", | 269 "rtptransport_unittest.cc", |
| 267 "rtptransporttestutil.h", | 270 "rtptransporttestutil.h", |
| 268 "srtpfilter_unittest.cc", | 271 "srtpfilter_unittest.cc", |
| 269 "srtpsession_unittest.cc", | 272 "srtpsession_unittest.cc", |
| 270 "srtptestutil.h", | 273 "srtptestutil.h", |
| 271 "srtptransport_unittest.cc", | 274 "srtptransport_unittest.cc", |
| 272 ] | 275 ] |
| 273 | 276 |
| (...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 "test/androidtestinitializer.cc", | 491 "test/androidtestinitializer.cc", |
| 489 "test/androidtestinitializer.h", | 492 "test/androidtestinitializer.h", |
| 490 ] | 493 ] |
| 491 deps = [ | 494 deps = [ |
| 492 "../sdk/android:libjingle_peerconnection_jni", | 495 "../sdk/android:libjingle_peerconnection_jni", |
| 493 "//testing/android/native_test:native_test_support", | 496 "//testing/android/native_test:native_test_support", |
| 494 ] | 497 ] |
| 495 } | 498 } |
| 496 } | 499 } |
| 497 } | 500 } |
| OLD | NEW |