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

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

Issue 2854123003: Build WebRTC with data channel only. (Closed)
Patch Set: Address the comments. Created 3 years, 7 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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 if (!build_with_chromium && is_clang) { 140 if (!build_with_chromium && is_clang) {
141 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 141 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
142 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 142 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
143 } 143 }
144 144
145 deps = [ 145 deps = [
146 ":rtc_pc", 146 ":rtc_pc",
147 "../api:call_api", 147 "../api:call_api",
148 "../api:rtc_stats_api", 148 "../api:rtc_stats_api",
149 "../api/video_codecs:video_codecs_api", 149 "../api/video_codecs:video_codecs_api",
150 "../call",
151 "../media", 150 "../media",
152 "../stats", 151 "../stats",
153 ] 152 ]
154 153
154 if (rtc_enable_media) {
155 deps += [ "../call" ]
156 }
157
155 public_deps = [ 158 public_deps = [
156 "../api:libjingle_peerconnection_api", 159 "../api:libjingle_peerconnection_api",
157 ] 160 ]
158 161
159 if (rtc_use_quic) { 162 if (rtc_use_quic) {
160 sources += [ 163 sources += [
161 "quicdatachannel.cc", 164 "quicdatachannel.cc",
162 "quicdatachannel.h", 165 "quicdatachannel.h",
163 "quicdatatransport.cc", 166 "quicdatatransport.cc",
164 "quicdatatransport.h", 167 "quicdatatransport.h",
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 "//testing/gmock", 368 "//testing/gmock",
366 ] 369 ]
367 370
368 if (is_android) { 371 if (is_android) {
369 deps += [ "//testing/android/native_test:native_test_support" ] 372 deps += [ "//testing/android/native_test:native_test_support" ]
370 373
371 shard_timeout = 900 374 shard_timeout = 900
372 } 375 }
373 } 376 }
374 } 377 }
OLDNEW
« no previous file with comments | « webrtc/media/BUILD.gn ('k') | webrtc/pc/channel.cc » ('j') | webrtc/pc/mediasession.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698