Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: webrtc/api/BUILD.gn

Issue 3004723002: Move RtpExtension to api/ directory and config.h/.cc to call/. (Closed)
Patch Set: Fix mistake Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 # Skip restricting visibility on mobile platforms since the tests on those 250 # Skip restricting visibility on mobile platforms since the tests on those
250 # gets additional generated targets which would require many lines here to 251 # gets additional generated targets which would require many lines here to
251 # cover (which would be confusing to read and hard to maintain). 252 # cover (which would be confusing to read and hard to maintain).
252 if (!is_android && !is_ios) { 253 if (!is_android && !is_ios) {
253 visibility = [ "..:rtc_unittests" ] 254 visibility = [ "..:rtc_unittests" ]
254 } 255 }
255 sources = [ 256 sources = [
256 "ortc/mediadescription_unittest.cc", 257 "ortc/mediadescription_unittest.cc",
257 "ortc/sessiondescription_unittest.cc", 258 "ortc/sessiondescription_unittest.cc",
258 "rtcerror_unittest.cc", 259 "rtcerror_unittest.cc",
260 "rtpparameters_unittest.cc",
259 ] 261 ]
260 262
261 if (!build_with_chromium && is_clang) { 263 if (!build_with_chromium && is_clang) {
262 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 264 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
263 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 265 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
264 } 266 }
265 267
266 deps = [ 268 deps = [
267 ":libjingle_peerconnection_api", 269 ":libjingle_peerconnection_api",
268 ":ortc_api", 270 ":ortc_api",
269 "../test:test_support", 271 "../test:test_support",
270 ] 272 ]
271 } 273 }
272 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698