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

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

Issue 2675173003: Adding "adapter" ORTC objects on top of ChannelManager/BaseChannel/etc. (Closed)
Patch Set: Add memcheck suppression for end-to-end tests. Created 3 years, 9 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
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/api/mediatypes.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "mediacontroller.h", 49 "mediacontroller.h",
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",
60 "peerconnectionfactoryproxy.h", 59 "peerconnectionfactoryproxy.h",
61 "peerconnectioninterface.h", 60 "peerconnectioninterface.h",
62 "peerconnectionproxy.h", 61 "peerconnectionproxy.h",
63 "proxy.h", 62 "proxy.h",
64 "rtcerror.cc", 63 "rtcerror.cc",
65 "rtcerror.h", 64 "rtcerror.h",
66 "rtpparameters.h", 65 "rtpparameters.h",
67 "rtpreceiverinterface.h", 66 "rtpreceiverinterface.h",
68 "rtpsender.h", 67 "rtpsender.h",
69 "rtpsenderinterface.h", 68 "rtpsenderinterface.h",
70 "statstypes.cc", 69 "statstypes.cc",
71 "statstypes.h", 70 "statstypes.h",
72 "streamcollection.h", 71 "streamcollection.h",
73 "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" ]
83 } 81 }
84 82
85 deps = [ 83 deps = [
86 ":rtc_stats_api", 84 ":rtc_stats_api",
87 ] 85 ]
88 } 86 }
89 87
88 rtc_source_set("ortc_api") {
89 check_includes = false # TODO(deadbeef): Remove (bugs.webrtc.org/6828)
90 sources = [
91 "ortc/ortcfactoryinterface.h",
92 "ortc/ortcrtpreceiverinterface.h",
93 "ortc/ortcrtpsenderinterface.h",
94 "ortc/packettransportinterface.h",
95 "ortc/rtptransportcontrollerinterface.h",
96 "ortc/rtptransportinterface.h",
97 "ortc/udptransportinterface.h",
98 ]
99
100 # For mediastreaminterface.h, etc.
101 # TODO(deadbeef): Create a separate target for the common things ORTC and
102 # PeerConnection code shares, so that ortc_api can depend on that instead of
103 # libjingle_peerconnection_api.
104 public_deps = [
105 ":libjingle_peerconnection_api",
106 ]
107 }
108
90 # TODO(ossu): Remove once downstream projects have updated. 109 # TODO(ossu): Remove once downstream projects have updated.
91 rtc_source_set("libjingle_peerconnection") { 110 rtc_source_set("libjingle_peerconnection") {
92 public_deps = [ 111 public_deps = [
93 "../pc:libjingle_peerconnection", 112 "../pc:libjingle_peerconnection",
94 ] 113 ]
95 } 114 }
96 115
97 rtc_source_set("rtc_stats_api") { 116 rtc_source_set("rtc_stats_api") {
98 cflags = [] 117 cflags = []
99 sources = [ 118 sources = [
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 230 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
212 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 231 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
213 } 232 }
214 233
215 deps = [ 234 deps = [
216 ":libjingle_peerconnection_api", 235 ":libjingle_peerconnection_api",
217 "//webrtc/test:test_support", 236 "//webrtc/test:test_support",
218 ] 237 ]
219 } 238 }
220 } 239 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/api/mediatypes.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698