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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "peerconnectioninterface.h", | 61 "peerconnectioninterface.h", |
62 "peerconnectionproxy.h", | 62 "peerconnectionproxy.h", |
63 "proxy.h", | 63 "proxy.h", |
64 "rtpparameters.h", | 64 "rtpparameters.h", |
65 "rtpreceiverinterface.h", | 65 "rtpreceiverinterface.h", |
66 "rtpsender.h", | 66 "rtpsender.h", |
67 "rtpsenderinterface.h", | 67 "rtpsenderinterface.h", |
68 "statstypes.cc", | 68 "statstypes.cc", |
69 "statstypes.h", | 69 "statstypes.h", |
70 "streamcollection.h", | 70 "streamcollection.h", |
71 "trackmediainfomap.cc", | |
72 "trackmediainfomap.h", | |
73 "udptransportinterface.h", | 71 "udptransportinterface.h", |
74 "umametrics.h", | 72 "umametrics.h", |
75 "videosourceproxy.h", | 73 "videosourceproxy.h", |
76 "videotracksource.h", | 74 "videotracksource.h", |
77 "webrtcsdp.h", | 75 "webrtcsdp.h", |
78 ] | 76 ] |
79 | 77 |
80 if (!build_with_chromium && is_clang) { | 78 if (!build_with_chromium && is_clang) { |
81 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 79 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 80 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 deps = [ | 192 deps = [ |
195 ":libjingle_peerconnection_api", | 193 ":libjingle_peerconnection_api", |
196 "../base:rtc_base_approved", | 194 "../base:rtc_base_approved", |
197 ] | 195 ] |
198 if (!build_with_chromium && is_clang) { | 196 if (!build_with_chromium && is_clang) { |
199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 197 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 198 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
201 } | 199 } |
202 } | 200 } |
203 } | 201 } |
OLD | NEW |