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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", | 71 "trackmediainfomap.cc", |
72 "trackmediainfomap.h", | 72 "trackmediainfomap.h", |
73 "udptransportinterface.h", | 73 "udptransportinterface.h", |
74 "umametrics.h", | 74 "umametrics.h", |
75 "videosourceproxy.h", | 75 "videosourceproxy.h", |
76 "videotracksource.h", | 76 "videotracksource.h", |
| 77 "webrtcsdp.h", |
77 ] | 78 ] |
78 | 79 |
79 if (!build_with_chromium && is_clang) { | 80 if (!build_with_chromium && is_clang) { |
80 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 81 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
81 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
82 } | 83 } |
83 | 84 |
84 deps = [ | 85 deps = [ |
85 ":rtc_stats_api", | 86 ":rtc_stats_api", |
86 ] | 87 ] |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 deps = [ | 194 deps = [ |
194 ":libjingle_peerconnection_api", | 195 ":libjingle_peerconnection_api", |
195 "../base:rtc_base_approved", | 196 "../base:rtc_base_approved", |
196 ] | 197 ] |
197 if (!build_with_chromium && is_clang) { | 198 if (!build_with_chromium && is_clang) { |
198 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
199 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
200 } | 201 } |
201 } | 202 } |
202 } | 203 } |
OLD | NEW |