| 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 1559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1570 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1571 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1571 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1572 } | 1572 } |
| 1573 | 1573 |
| 1574 deps = [ | 1574 deps = [ |
| 1575 ":audio_encoder_interface", | 1575 ":audio_encoder_interface", |
| 1576 ":pcm16b", | 1576 ":pcm16b", |
| 1577 "../..:webrtc_common", | 1577 "../..:webrtc_common", |
| 1578 "../../api/audio_codecs:audio_codecs_api", | 1578 "../../api/audio_codecs:audio_codecs_api", |
| 1579 "../../base:rtc_base_approved", | 1579 "../../base:rtc_base_approved", |
| 1580 "../../base:rtc_base_tests_utils", | |
| 1581 "../../common_audio", | 1580 "../../common_audio", |
| 1582 "../../test:rtp_test_utils", | 1581 "../../test:rtp_test_utils", |
| 1583 "../rtp_rtcp", | 1582 "../rtp_rtcp", |
| 1584 ] | 1583 ] |
| 1585 | 1584 |
| 1586 public_deps = [ | 1585 public_deps = [ |
| 1587 ":neteq_test_minimal", | 1586 ":neteq_test_minimal", |
| 1588 ] | 1587 ] |
| 1589 | 1588 |
| 1590 if (rtc_enable_protobuf) { | 1589 if (rtc_enable_protobuf) { |
| (...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2172 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2171 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
| 2173 # TODO(kwiberg): Remove this. | 2172 # TODO(kwiberg): Remove this. |
| 2174 rtc_source_set("builtin_audio_decoder_factory") { | 2173 rtc_source_set("builtin_audio_decoder_factory") { |
| 2175 sources = [ | 2174 sources = [ |
| 2176 "codecs/builtin_audio_decoder_factory.h", | 2175 "codecs/builtin_audio_decoder_factory.h", |
| 2177 ] | 2176 ] |
| 2178 deps = [ | 2177 deps = [ |
| 2179 "../../api/audio_codecs:builtin_audio_decoder_factory", | 2178 "../../api/audio_codecs:builtin_audio_decoder_factory", |
| 2180 ] | 2179 ] |
| 2181 } | 2180 } |
| OLD | NEW |