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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "mediastream.h", | 50 "mediastream.h", |
51 "mediastreaminterface.cc", | 51 "mediastreaminterface.cc", |
52 "mediastreaminterface.h", | 52 "mediastreaminterface.h", |
53 "mediastreamproxy.h", | 53 "mediastreamproxy.h", |
54 "mediastreamtrack.h", | 54 "mediastreamtrack.h", |
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 "ortcfactoryinterface.h", | 59 "ortcfactoryinterface.h", |
| 60 "ortcrtpreceiverinterface.h", |
| 61 "ortcrtpsenderinterface.h", |
| 62 "packettransportinterface.h", |
60 "peerconnectionfactoryproxy.h", | 63 "peerconnectionfactoryproxy.h", |
61 "peerconnectioninterface.h", | 64 "peerconnectioninterface.h", |
62 "peerconnectionproxy.h", | 65 "peerconnectionproxy.h", |
63 "proxy.h", | 66 "proxy.h", |
| 67 "rtcerror.cc", |
| 68 "rtcerror.h", |
64 "rtpparameters.h", | 69 "rtpparameters.h", |
65 "rtpreceiverinterface.h", | 70 "rtpreceiverinterface.h", |
66 "rtpsender.h", | 71 "rtpsender.h", |
67 "rtpsenderinterface.h", | 72 "rtpsenderinterface.h", |
| 73 "rtptransportcontrollerinterface.h", |
| 74 "rtptransportinterface.h", |
68 "statstypes.cc", | 75 "statstypes.cc", |
69 "statstypes.h", | 76 "statstypes.h", |
70 "streamcollection.h", | 77 "streamcollection.h", |
71 "trackmediainfomap.cc", | 78 "trackmediainfomap.cc", |
72 "trackmediainfomap.h", | 79 "trackmediainfomap.h", |
73 "udptransportinterface.h", | 80 "udptransportinterface.h", |
74 "umametrics.h", | 81 "umametrics.h", |
75 "videosourceproxy.h", | 82 "videosourceproxy.h", |
76 "videotracksource.h", | 83 "videotracksource.h", |
77 "webrtcsdp.h", | 84 "webrtcsdp.h", |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 deps = [ | 201 deps = [ |
195 ":libjingle_peerconnection_api", | 202 ":libjingle_peerconnection_api", |
196 "../base:rtc_base_approved", | 203 "../base:rtc_base_approved", |
197 ] | 204 ] |
198 if (!build_with_chromium && is_clang) { | 205 if (!build_with_chromium && is_clang) { |
199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 206 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 207 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
201 } | 208 } |
202 } | 209 } |
203 } | 210 } |
OLD | NEW |