OLD | NEW |
---|---|
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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 disable building with support for SCTP data channels. |
78 rtc_enable_sctp = true | 78 rtc_enable_sctp = true |
79 | 79 |
80 # Set this to disable building audio and video stack. | |
kjellander_webrtc
2017/05/04 14:01:46
"Set this to false to"...
Zhi Huang
2017/05/04 21:28:53
Done.
| |
81 rtc_enable_media = true | |
82 | |
80 # Disable these to not build components which can be externally provided. | 83 # Disable these to not build components which can be externally provided. |
81 rtc_build_json = true | 84 rtc_build_json = true |
82 rtc_build_libjpeg = true | 85 rtc_build_libjpeg = true |
83 rtc_build_libsrtp = true | 86 rtc_build_libsrtp = true |
84 rtc_build_libvpx = true | 87 rtc_build_libvpx = true |
85 rtc_libvpx_build_vp9 = true | 88 rtc_libvpx_build_vp9 = true |
86 rtc_build_libyuv = true | 89 rtc_build_libyuv = true |
87 rtc_build_openmax_dl = true | 90 rtc_build_openmax_dl = true |
88 rtc_build_opus = true | 91 rtc_build_opus = true |
89 rtc_build_ssl = true | 92 rtc_build_ssl = true |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
368 configs += invoker.configs | 371 configs += invoker.configs |
369 configs -= rtc_remove_configs | 372 configs -= rtc_remove_configs |
370 configs -= invoker.suppressed_configs | 373 configs -= invoker.suppressed_configs |
371 public_configs = [ rtc_common_inherited_config ] | 374 public_configs = [ rtc_common_inherited_config ] |
372 if (defined(invoker.public_configs)) { | 375 if (defined(invoker.public_configs)) { |
373 public_configs += invoker.public_configs | 376 public_configs += invoker.public_configs |
374 } | 377 } |
375 } | 378 } |
376 } | 379 } |
377 } | 380 } |
OLD | NEW |