| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "mediastreamtrackproxy.h", | 55 "mediastreamtrackproxy.h", |
| 56 "mediatypes.cc", | 56 "mediatypes.cc", |
| 57 "mediatypes.h", | 57 "mediatypes.h", |
| 58 "notifier.h", | 58 "notifier.h", |
| 59 "peerconnectionfactoryproxy.h", | 59 "peerconnectionfactoryproxy.h", |
| 60 "peerconnectioninterface.h", | 60 "peerconnectioninterface.h", |
| 61 "peerconnectionproxy.h", | 61 "peerconnectionproxy.h", |
| 62 "proxy.h", | 62 "proxy.h", |
| 63 "rtcerror.cc", | 63 "rtcerror.cc", |
| 64 "rtcerror.h", | 64 "rtcerror.h", |
| 65 "rtpparameters.cc", |
| 65 "rtpparameters.h", | 66 "rtpparameters.h", |
| 66 "rtpreceiverinterface.h", | 67 "rtpreceiverinterface.h", |
| 67 "rtpsender.h", | 68 "rtpsender.h", |
| 68 "rtpsenderinterface.h", | 69 "rtpsenderinterface.h", |
| 69 "statstypes.cc", | 70 "statstypes.cc", |
| 70 "statstypes.h", | 71 "statstypes.h", |
| 71 "streamcollection.h", | 72 "streamcollection.h", |
| 72 "umametrics.h", | 73 "umametrics.h", |
| 73 "videosourceproxy.h", | 74 "videosourceproxy.h", |
| 74 "videotracksource.h", | 75 "videotracksource.h", |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 # Skip restricting visibility on mobile platforms since the tests on those | 252 # Skip restricting visibility on mobile platforms since the tests on those |
| 252 # gets additional generated targets which would require many lines here to | 253 # gets additional generated targets which would require many lines here to |
| 253 # cover (which would be confusing to read and hard to maintain). | 254 # cover (which would be confusing to read and hard to maintain). |
| 254 if (!is_android && !is_ios) { | 255 if (!is_android && !is_ios) { |
| 255 visibility = [ "..:rtc_unittests" ] | 256 visibility = [ "..:rtc_unittests" ] |
| 256 } | 257 } |
| 257 sources = [ | 258 sources = [ |
| 258 "ortc/mediadescription_unittest.cc", | 259 "ortc/mediadescription_unittest.cc", |
| 259 "ortc/sessiondescription_unittest.cc", | 260 "ortc/sessiondescription_unittest.cc", |
| 260 "rtcerror_unittest.cc", | 261 "rtcerror_unittest.cc", |
| 262 "rtpparameters_unittest.cc", |
| 261 ] | 263 ] |
| 262 | 264 |
| 263 if (!build_with_chromium && is_clang) { | 265 if (!build_with_chromium && is_clang) { |
| 264 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 266 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 265 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 267 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 266 } | 268 } |
| 267 | 269 |
| 268 deps = [ | 270 deps = [ |
| 269 ":libjingle_peerconnection_api", | 271 ":libjingle_peerconnection_api", |
| 270 ":ortc_api", | 272 ":ortc_api", |
| 271 "../test:test_support", | 273 "../test:test_support", |
| 272 ] | 274 ] |
| 273 } | 275 } |
| 274 } | 276 } |
| OLD | NEW |