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

Side by Side Diff: webrtc/webrtc.gni

Issue 2854123003: Build WebRTC with data channel only. (Closed)
Patch Set: Add an end to end test for libjingle_peerconnection_datachannel_only. Make it 2.37Mb. 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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 # packet authentication for RTP packets instead of libsrtp. 67 # packet authentication for RTP packets instead of libsrtp.
68 rtc_enable_external_auth = build_with_chromium 68 rtc_enable_external_auth = build_with_chromium
69 69
70 # Selects whether debug dumps for the audio processing module 70 # Selects whether debug dumps for the audio processing module
71 # should be generated. 71 # should be generated.
72 apm_debug_dump = false 72 apm_debug_dump = false
73 73
74 # Set this to true to enable BWE test logging. 74 # Set this to true to enable BWE test logging.
75 rtc_enable_bwe_test_logging = false 75 rtc_enable_bwe_test_logging = false
76 76
77 # Set this to disable building with support for SCTP data channels. 77 # Set this to false to disable building with support for SCTP data channels.
78 rtc_enable_sctp = true 78 rtc_enable_sctp = true
79 79
80 # Disable these to not build components which can be externally provided. 80 # Disable these to not build components which can be externally provided.
81 rtc_build_json = true 81 rtc_build_json = true
82 rtc_build_libjpeg = true 82 rtc_build_libjpeg = true
83 rtc_build_libsrtp = true 83 rtc_build_libsrtp = true
84 rtc_build_libvpx = true 84 rtc_build_libvpx = true
85 rtc_libvpx_build_vp9 = true 85 rtc_libvpx_build_vp9 = true
86 rtc_build_libyuv = true 86 rtc_build_libyuv = true
87 rtc_build_openmax_dl = true 87 rtc_build_openmax_dl = true
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 configs += invoker.configs 368 configs += invoker.configs
369 configs -= rtc_remove_configs 369 configs -= rtc_remove_configs
370 configs -= invoker.suppressed_configs 370 configs -= invoker.suppressed_configs
371 public_configs = [ rtc_common_inherited_config ] 371 public_configs = [ rtc_common_inherited_config ]
372 if (defined(invoker.public_configs)) { 372 if (defined(invoker.public_configs)) {
373 public_configs += invoker.public_configs 373 public_configs += invoker.public_configs
374 } 374 }
375 } 375 }
376 } 376 }
377 } 377 }
OLDNEW
« webrtc/media/BUILD.gn ('K') | « webrtc/sdk/android/src/jni/peerconnection_jni.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698