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

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1910523003: Add a new TickTimer class to NetEq (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Add custom ms_per_tick to TickTimer Created 4 years, 8 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 | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 "neteq/preemptive_expand.cc", 800 "neteq/preemptive_expand.cc",
801 "neteq/preemptive_expand.h", 801 "neteq/preemptive_expand.h",
802 "neteq/random_vector.cc", 802 "neteq/random_vector.cc",
803 "neteq/random_vector.h", 803 "neteq/random_vector.h",
804 "neteq/rtcp.cc", 804 "neteq/rtcp.cc",
805 "neteq/rtcp.h", 805 "neteq/rtcp.h",
806 "neteq/statistics_calculator.cc", 806 "neteq/statistics_calculator.cc",
807 "neteq/statistics_calculator.h", 807 "neteq/statistics_calculator.h",
808 "neteq/sync_buffer.cc", 808 "neteq/sync_buffer.cc",
809 "neteq/sync_buffer.h", 809 "neteq/sync_buffer.h",
810 "neteq/tick_timer.cc",
811 "neteq/tick_timer.h",
810 "neteq/time_stretch.cc", 812 "neteq/time_stretch.cc",
811 "neteq/time_stretch.h", 813 "neteq/time_stretch.h",
812 "neteq/timestamp_scaler.cc", 814 "neteq/timestamp_scaler.cc",
813 "neteq/timestamp_scaler.h", 815 "neteq/timestamp_scaler.h",
814 ] 816 ]
815 817
816 configs += [ "../..:common_config" ] 818 configs += [ "../..:common_config" ]
817 819
818 public_configs = [ 820 public_configs = [
819 "../..:common_inherited_config", 821 "../..:common_inherited_config",
(...skipping 25 matching lines...) Expand all
845 defines += [ "WEBRTC_CODEC_ISACFX" ] 847 defines += [ "WEBRTC_CODEC_ISACFX" ]
846 deps += [ ":isac_fix" ] 848 deps += [ ":isac_fix" ]
847 } else { 849 } else {
848 defines += [ "WEBRTC_CODEC_ISAC" ] 850 defines += [ "WEBRTC_CODEC_ISAC" ]
849 deps += [ ":isac" ] 851 deps += [ ":isac" ]
850 } 852 }
851 defines += [ "WEBRTC_CODEC_G722" ] 853 defines += [ "WEBRTC_CODEC_G722" ]
852 deps += [ ":g722" ] 854 deps += [ ":g722" ]
853 } 855 }
854 } 856 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_coding/neteq/neteq.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698