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

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

Issue 1398473004: Changed queue implementation to the proposed vector-based solution. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@lock_unittest_CL
Patch Set: Comment changes and modified the order of parameters for one of the constructors Created 5 years, 1 month 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 | « no previous file | webrtc/common_audio/common_audio.gyp » ('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/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "signal_processing/resample_by_2_internal.c", 80 "signal_processing/resample_by_2_internal.c",
81 "signal_processing/resample_by_2_internal.h", 81 "signal_processing/resample_by_2_internal.h",
82 "signal_processing/resample_fractional.c", 82 "signal_processing/resample_fractional.c",
83 "signal_processing/spl_init.c", 83 "signal_processing/spl_init.c",
84 "signal_processing/spl_sqrt.c", 84 "signal_processing/spl_sqrt.c",
85 "signal_processing/splitting_filter.c", 85 "signal_processing/splitting_filter.c",
86 "signal_processing/sqrt_of_one_minus_x_squared.c", 86 "signal_processing/sqrt_of_one_minus_x_squared.c",
87 "signal_processing/vector_scaling_operations.c", 87 "signal_processing/vector_scaling_operations.c",
88 "sparse_fir_filter.cc", 88 "sparse_fir_filter.cc",
89 "sparse_fir_filter.h", 89 "sparse_fir_filter.h",
90 "swap_queue.h",
90 "vad/include/vad.h", 91 "vad/include/vad.h",
91 "vad/include/webrtc_vad.h", 92 "vad/include/webrtc_vad.h",
92 "vad/vad.cc", 93 "vad/vad.cc",
93 "vad/vad_core.c", 94 "vad/vad_core.c",
94 "vad/vad_core.h", 95 "vad/vad_core.h",
95 "vad/vad_filterbank.c", 96 "vad/vad_filterbank.c",
96 "vad/vad_filterbank.h", 97 "vad/vad_filterbank.h",
97 "vad/vad_gmm.c", 98 "vad/vad_gmm.c",
98 "vad/vad_gmm.h", 99 "vad/vad_gmm.h",
99 "vad/vad_sp.c", 100 "vad/vad_sp.c",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 cflags -= [ 235 cflags -= [
235 "-flto", 236 "-flto",
236 "-ffat-lto-objects", 237 "-ffat-lto-objects",
237 ] 238 ]
238 } 239 }
239 240
240 configs += [ "..:common_config" ] 241 configs += [ "..:common_config" ]
241 public_configs = [ "..:common_inherited_config" ] 242 public_configs = [ "..:common_inherited_config" ]
242 } 243 }
243 } 244 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_audio/common_audio.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698