| 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 1907 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1918 | 1918 |
| 1919 sources = [ | 1919 sources = [ |
| 1920 "codecs/isac/fix/test/kenny.cc", | 1920 "codecs/isac/fix/test/kenny.cc", |
| 1921 ] | 1921 ] |
| 1922 | 1922 |
| 1923 deps = [ | 1923 deps = [ |
| 1924 ":isac_fix", | 1924 ":isac_fix", |
| 1925 "../../test:test_support", | 1925 "../../test:test_support", |
| 1926 ] | 1926 ] |
| 1927 | 1927 |
| 1928 data = [ |
| 1929 "../../../resources/speech_and_misc_wb.pcm", |
| 1930 ] |
| 1931 |
| 1928 if (is_win) { | 1932 if (is_win) { |
| 1929 cflags = [ | 1933 cflags = [ |
| 1930 # Disable warnings to enable Win64 build, issue 1323. | 1934 # Disable warnings to enable Win64 build, issue 1323. |
| 1931 "/wd4267", # size_t to int truncation | 1935 "/wd4267", # size_t to int truncation |
| 1932 ] | 1936 ] |
| 1933 } | 1937 } |
| 1934 } | 1938 } |
| 1935 | 1939 |
| 1936 config("isac_test_warnings_config") { | 1940 config("isac_test_warnings_config") { |
| 1937 if (is_win && is_clang) { | 1941 if (is_win && is_clang) { |
| (...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2255 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2259 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
| 2256 # TODO(ossu): Remove this. | 2260 # TODO(ossu): Remove this. |
| 2257 rtc_source_set("builtin_audio_encoder_factory") { | 2261 rtc_source_set("builtin_audio_encoder_factory") { |
| 2258 sources = [ | 2262 sources = [ |
| 2259 "codecs/builtin_audio_encoder_factory.h", | 2263 "codecs/builtin_audio_encoder_factory.h", |
| 2260 ] | 2264 ] |
| 2261 deps = [ | 2265 deps = [ |
| 2262 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2266 "../../api/audio_codecs:builtin_audio_encoder_factory", |
| 2263 ] | 2267 ] |
| 2264 } | 2268 } |
| OLD | NEW |