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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
850 ":webrtc_opus_c", | 850 ":webrtc_opus_c", |
851 ] | 851 ] |
852 | 852 |
853 defines = [] | 853 defines = [] |
854 if (rtc_opus_variable_complexity) { | 854 if (rtc_opus_variable_complexity) { |
855 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] | 855 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=1" ] |
856 } else { | 856 } else { |
857 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=0" ] | 857 defines += [ "WEBRTC_OPUS_VARIABLE_COMPLEXITY=0" ] |
858 } | 858 } |
859 | 859 |
860 if (rtc_opus_support_120ms_ptime) { | |
minyue-webrtc
2017/02/02 10:42:08
rebase needed here
michaelt
2017/02/02 11:17:18
Done.
| |
861 defines += [ "WEBRTC_OPUS_SUPPORT_120MS_PTIME=1" ] | |
862 } else { | |
863 defines += [ "WEBRTC_OPUS_SUPPORT_120MS_PTIME=0" ] | |
864 } | |
865 | |
860 if (rtc_build_opus) { | 866 if (rtc_build_opus) { |
861 public_deps += [ rtc_opus_dir ] | 867 public_deps += [ rtc_opus_dir ] |
862 } else if (build_with_mozilla) { | 868 } else if (build_with_mozilla) { |
863 include_dirs = [ getenv("DIST") + "/include/opus" ] | 869 include_dirs = [ getenv("DIST") + "/include/opus" ] |
864 } | 870 } |
865 } | 871 } |
866 | 872 |
867 rtc_source_set("webrtc_opus_c") { | 873 rtc_source_set("webrtc_opus_c") { |
868 visibility = [ ":*" ] # Only targets in this file can depend on this. | 874 visibility = [ ":*" ] # Only targets in this file can depend on this. |
869 sources = [ | 875 sources = [ |
(...skipping 1237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2107 ":neteq_unittest_proto", | 2113 ":neteq_unittest_proto", |
2108 ] | 2114 ] |
2109 } | 2115 } |
2110 | 2116 |
2111 if (!build_with_chromium && is_clang) { | 2117 if (!build_with_chromium && is_clang) { |
2112 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 2118 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
2113 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 2119 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
2114 } | 2120 } |
2115 } | 2121 } |
2116 } | 2122 } |
OLD | NEW |