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