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

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

Issue 2546493002: Update smoothed bitrate. (Closed)
Patch Set: Fix android build error Created 3 years, 11 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 "codecs/opus/audio_encoder_opus.h", 832 "codecs/opus/audio_encoder_opus.h",
833 ] 833 ]
834 834
835 deps = [ 835 deps = [
836 ":audio_decoder_interface", 836 ":audio_decoder_interface",
837 ":audio_encoder_interface", 837 ":audio_encoder_interface",
838 ":audio_network_adaptor", 838 ":audio_network_adaptor",
839 "../..:webrtc_common", 839 "../..:webrtc_common",
840 "../../base:rtc_analytics", 840 "../../base:rtc_analytics",
841 "../../base:rtc_base_approved", 841 "../../base:rtc_base_approved",
842 "../../common_audio",
842 "../../system_wrappers", 843 "../../system_wrappers",
843 ] 844 ]
844 public_deps = [ 845 public_deps = [
845 ":webrtc_opus_c", 846 ":webrtc_opus_c",
846 ] 847 ]
847 848
848 defines = [] 849 defines = []
849 if (rtc_opus_variable_complexity) { 850 if (rtc_opus_variable_complexity) {
850 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] 851 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ]
851 } else { 852 } else {
(...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after
1936 "../../test:test_main", 1937 "../../test:test_main",
1937 "//testing/gtest", 1938 "//testing/gtest",
1938 ] 1939 ]
1939 1940
1940 if (!build_with_chromium && is_clang) { 1941 if (!build_with_chromium && is_clang) {
1941 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1942 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1942 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1943 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1943 } 1944 }
1944 } 1945 }
1945 } 1946 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698