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

Side by Side Diff: webrtc/build/webrtc.gni

Issue 2300813004: Moved the place for the aec_debug_dump build flag and changed the name to apm_debug_dump (Closed)
Patch Set: Removed duplicate definition of build flag Created 4 years, 3 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/common.gypi ('k') | webrtc/modules/audio_processing/BUILD.gn » ('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) 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 21 matching lines...) Expand all
32 # Enable data logging. Produces text files with data logged within engines 32 # Enable data logging. Produces text files with data logged within engines
33 # which can be easily parsed for offline processing. 33 # which can be easily parsed for offline processing.
34 rtc_enable_data_logging = false 34 rtc_enable_data_logging = false
35 35
36 # Enables the use of protocol buffers for debug recordings. 36 # Enables the use of protocol buffers for debug recordings.
37 rtc_enable_protobuf = true 37 rtc_enable_protobuf = true
38 38
39 # Disable the code for the intelligibility enhancer by default. 39 # Disable the code for the intelligibility enhancer by default.
40 rtc_enable_intelligibility_enhancer = false 40 rtc_enable_intelligibility_enhancer = false
41 41
42 # Selects whether debug dumps for the audio processing module
43 # should be generated.
44 apm_debug_dump = false
45
42 # Disable these to not build components which can be externally provided. 46 # Disable these to not build components which can be externally provided.
43 rtc_build_expat = true 47 rtc_build_expat = true
44 rtc_build_json = true 48 rtc_build_json = true
45 rtc_build_libjpeg = true 49 rtc_build_libjpeg = true
46 rtc_build_libsrtp = true 50 rtc_build_libsrtp = true
47 rtc_build_libvpx = true 51 rtc_build_libvpx = true
48 rtc_libvpx_build_vp9 = true 52 rtc_libvpx_build_vp9 = true
49 rtc_build_libyuv = true 53 rtc_build_libyuv = true
50 rtc_build_openmax_dl = true 54 rtc_build_openmax_dl = true
51 rtc_build_opus = true 55 rtc_build_opus = true
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 declare_args() { 141 declare_args() {
138 # Include the iLBC audio codec? 142 # Include the iLBC audio codec?
139 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) 143 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla)
140 } 144 }
141 145
142 # Make it possible to provide custom locations for some libraries (move these 146 # Make it possible to provide custom locations for some libraries (move these
143 # up into declare_args should we need to actually use them for the GN build). 147 # up into declare_args should we need to actually use them for the GN build).
144 rtc_libvpx_dir = "//third_party/libvpx" 148 rtc_libvpx_dir = "//third_party/libvpx"
145 rtc_libyuv_dir = "//third_party/libyuv" 149 rtc_libyuv_dir = "//third_party/libyuv"
146 rtc_opus_dir = "//third_party/opus" 150 rtc_opus_dir = "//third_party/opus"
OLDNEW
« no previous file with comments | « webrtc/build/common.gypi ('k') | webrtc/modules/audio_processing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698