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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 rtc_test("rtc_pc_unittests") { | 184 rtc_test("rtc_pc_unittests") { |
185 testonly = true | 185 testonly = true |
186 | 186 |
187 sources = [ | 187 sources = [ |
188 "bundlefilter_unittest.cc", | 188 "bundlefilter_unittest.cc", |
189 "channel_unittest.cc", | 189 "channel_unittest.cc", |
190 "channelmanager_unittest.cc", | 190 "channelmanager_unittest.cc", |
191 "currentspeakermonitor_unittest.cc", | 191 "currentspeakermonitor_unittest.cc", |
192 "mediasession_unittest.cc", | 192 "mediasession_unittest.cc", |
193 "rtcpmuxfilter_unittest.cc", | 193 "rtcpmuxfilter_unittest.cc", |
| 194 "rtptransport_unittest.cc", |
194 "srtpfilter_unittest.cc", | 195 "srtpfilter_unittest.cc", |
195 ] | 196 ] |
196 | 197 |
197 include_dirs = [ "//third_party/libsrtp/srtp" ] | 198 include_dirs = [ "//third_party/libsrtp/srtp" ] |
198 | 199 |
199 configs += [ ":rtc_pc_unittests_config" ] | 200 configs += [ ":rtc_pc_unittests_config" ] |
200 | 201 |
201 if (!build_with_chromium && is_clang) { | 202 if (!build_with_chromium && is_clang) { |
202 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 203 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
203 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 204 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 "//testing/gmock", | 364 "//testing/gmock", |
364 ] | 365 ] |
365 | 366 |
366 if (is_android) { | 367 if (is_android) { |
367 deps += [ "//testing/android/native_test:native_test_support" ] | 368 deps += [ "//testing/android/native_test:native_test_support" ] |
368 | 369 |
369 shard_timeout = 900 | 370 shard_timeout = 900 |
370 } | 371 } |
371 } | 372 } |
372 } | 373 } |
OLD | NEW |