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

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

Issue 2675173003: Adding "adapter" ORTC objects on top of ChannelManager/BaseChannel/etc. (Closed)
Patch Set: Merge with master Created 3 years, 10 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 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_static_library("ortc_api") {
89 sources = [
90 "ortc/ortcfactoryinterface.h",
91 "ortc/ortcrtpreceiverinterface.h",
92 "ortc/ortcrtpsenderinterface.h",
93 "ortc/packettransportinterface.h",
94 "ortc/rtptransportcontrollerinterface.h",
95 "ortc/rtptransportinterface.h",
96 "ortc/udptransportinterface.h",
97 ]
98
99 # For mediastreaminterface.h, etc.
100 # TODO(deadbeef): Create a separate target for the common things ORTC and
101 # PeerConnection code shares, so that ortc_api can depend on that instead of
102 # libjingle_peerconnection_api.
103 public_deps = [
104 ":libjingle_peerconnection_api",
105 ]
106 }
107
90 # TODO(ossu): Remove once downstream projects have updated. 108 # TODO(ossu): Remove once downstream projects have updated.
91 rtc_source_set("libjingle_peerconnection") { 109 rtc_source_set("libjingle_peerconnection") {
92 public_deps = [ 110 public_deps = [
93 "../pc:libjingle_peerconnection", 111 "../pc:libjingle_peerconnection",
94 ] 112 ]
95 } 113 }
96 114
97 rtc_source_set("rtc_stats_api") { 115 rtc_source_set("rtc_stats_api") {
98 cflags = [] 116 cflags = []
99 sources = [ 117 sources = [
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 "../base:rtc_base_tests_utils", 237 "../base:rtc_base_tests_utils",
220 "../system_wrappers:metrics_default", 238 "../system_wrappers:metrics_default",
221 "../test:test_support", 239 "../test:test_support",
222 ] 240 ]
223 241
224 if (is_android) { 242 if (is_android) {
225 deps += [ "//testing/android/native_test:native_test_support" ] 243 deps += [ "//testing/android/native_test:native_test_support" ]
226 } 244 }
227 } 245 }
228 } 246 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/api/mediatypes.h » ('j') | webrtc/media/base/codec.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698