| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "mediacontroller.h", | 68 "mediacontroller.h", |
| 69 "mediastream.cc", | 69 "mediastream.cc", |
| 70 "mediastream.h", | 70 "mediastream.h", |
| 71 "mediastreaminterface.h", | 71 "mediastreaminterface.h", |
| 72 "mediastreamobserver.cc", | 72 "mediastreamobserver.cc", |
| 73 "mediastreamobserver.h", | 73 "mediastreamobserver.h", |
| 74 "mediastreamproxy.h", | 74 "mediastreamproxy.h", |
| 75 "mediastreamtrack.h", | 75 "mediastreamtrack.h", |
| 76 "mediastreamtrackproxy.h", | 76 "mediastreamtrackproxy.h", |
| 77 "notifier.h", | 77 "notifier.h", |
| 78 "ortcfactory.cc", |
| 79 "ortcfactory.h", |
| 80 "ortcfactoryinterface.h", |
| 78 "peerconnection.cc", | 81 "peerconnection.cc", |
| 79 "peerconnection.h", | 82 "peerconnection.h", |
| 80 "peerconnectionfactory.cc", | 83 "peerconnectionfactory.cc", |
| 81 "peerconnectionfactory.h", | 84 "peerconnectionfactory.h", |
| 82 "peerconnectionfactoryproxy.h", | 85 "peerconnectionfactoryproxy.h", |
| 83 "peerconnectioninterface.h", | 86 "peerconnectioninterface.h", |
| 84 "peerconnectionproxy.h", | 87 "peerconnectionproxy.h", |
| 85 "proxy.h", | 88 "proxy.h", |
| 86 "remoteaudiosource.cc", | 89 "remoteaudiosource.cc", |
| 87 "remoteaudiosource.h", | 90 "remoteaudiosource.h", |
| 88 "rtcstatscollector.cc", | 91 "rtcstatscollector.cc", |
| 89 "rtcstatscollector.h", | 92 "rtcstatscollector.h", |
| 90 "rtpparameters.h", | 93 "rtpparameters.h", |
| 91 "rtpreceiver.cc", | 94 "rtpreceiver.cc", |
| 92 "rtpreceiver.h", | 95 "rtpreceiver.h", |
| 93 "rtpreceiverinterface.h", | 96 "rtpreceiverinterface.h", |
| 94 "rtpsender.cc", | 97 "rtpsender.cc", |
| 95 "rtpsender.h", | 98 "rtpsender.h", |
| 96 "rtpsenderinterface.h", | 99 "rtpsenderinterface.h", |
| 97 "sctputils.cc", | 100 "sctputils.cc", |
| 98 "sctputils.h", | 101 "sctputils.h", |
| 99 "statscollector.cc", | 102 "statscollector.cc", |
| 100 "statscollector.h", | 103 "statscollector.h", |
| 101 "statstypes.cc", | 104 "statstypes.cc", |
| 102 "statstypes.h", | 105 "statstypes.h", |
| 103 "streamcollection.h", | 106 "streamcollection.h", |
| 107 "udptransportinterface.h", |
| 104 "videocapturertracksource.cc", | 108 "videocapturertracksource.cc", |
| 105 "videocapturertracksource.h", | 109 "videocapturertracksource.h", |
| 106 "videosourceproxy.h", | 110 "videosourceproxy.h", |
| 107 "videotrack.cc", | 111 "videotrack.cc", |
| 108 "videotrack.h", | 112 "videotrack.h", |
| 109 "videotracksource.cc", | 113 "videotracksource.cc", |
| 110 "videotracksource.h", | 114 "videotracksource.h", |
| 111 "webrtcsdp.cc", | 115 "webrtcsdp.cc", |
| 112 "webrtcsdp.h", | 116 "webrtcsdp.h", |
| 113 "webrtcsession.cc", | 117 "webrtcsession.cc", |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 rtc_test("peerconnection_unittests") { | 231 rtc_test("peerconnection_unittests") { |
| 228 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 232 check_includes = false # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 229 testonly = true | 233 testonly = true |
| 230 sources = [ | 234 sources = [ |
| 231 "datachannel_unittest.cc", | 235 "datachannel_unittest.cc", |
| 232 "dtmfsender_unittest.cc", | 236 "dtmfsender_unittest.cc", |
| 233 "jsepsessiondescription_unittest.cc", | 237 "jsepsessiondescription_unittest.cc", |
| 234 "localaudiosource_unittest.cc", | 238 "localaudiosource_unittest.cc", |
| 235 "mediaconstraintsinterface_unittest.cc", | 239 "mediaconstraintsinterface_unittest.cc", |
| 236 "mediastream_unittest.cc", | 240 "mediastream_unittest.cc", |
| 241 "ortcfactory_unittest.cc", |
| 237 "peerconnection_unittest.cc", | 242 "peerconnection_unittest.cc", |
| 238 "peerconnectionendtoend_unittest.cc", | 243 "peerconnectionendtoend_unittest.cc", |
| 239 "peerconnectionfactory_unittest.cc", | 244 "peerconnectionfactory_unittest.cc", |
| 240 "peerconnectioninterface_unittest.cc", | 245 "peerconnectioninterface_unittest.cc", |
| 241 "proxy_unittest.cc", | 246 "proxy_unittest.cc", |
| 242 "rtcstats_integrationtest.cc", | 247 "rtcstats_integrationtest.cc", |
| 243 "rtcstatscollector_unittest.cc", | 248 "rtcstatscollector_unittest.cc", |
| 244 "rtpsenderreceiver_unittest.cc", | 249 "rtpsenderreceiver_unittest.cc", |
| 245 "sctputils_unittest.cc", | 250 "sctputils_unittest.cc", |
| 246 "statscollector_unittest.cc", | 251 "statscollector_unittest.cc", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 deps = [ | 358 deps = [ |
| 354 ":libjingle_peerconnection", | 359 ":libjingle_peerconnection", |
| 355 "../base:rtc_base_approved", | 360 "../base:rtc_base_approved", |
| 356 ] | 361 ] |
| 357 if (!build_with_chromium && is_clang) { | 362 if (!build_with_chromium && is_clang) { |
| 358 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 363 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 359 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 364 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 360 } | 365 } |
| 361 } | 366 } |
| 362 } | 367 } |
| OLD | NEW |