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) { |
| 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 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2105 ":neteq_unittest_proto", | 2111 ":neteq_unittest_proto", |
2106 ] | 2112 ] |
2107 } | 2113 } |
2108 | 2114 |
2109 if (!build_with_chromium && is_clang) { | 2115 if (!build_with_chromium && is_clang) { |
2110 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 2116 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
2111 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 2117 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
2112 } | 2118 } |
2113 } | 2119 } |
2114 } | 2120 } |
OLD | NEW |