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("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 ] | 61 ] |
62 } | 62 } |
63 | 63 |
64 rtc_source_set("audio_decoder_factory_interface") { | 64 rtc_source_set("audio_decoder_factory_interface") { |
65 sources = [ | 65 sources = [ |
66 "codecs/audio_decoder_factory.h", | 66 "codecs/audio_decoder_factory.h", |
67 ] | 67 ] |
68 deps = [ | 68 deps = [ |
69 ":audio_decoder_interface", | 69 ":audio_decoder_interface", |
70 ":audio_format", | 70 ":audio_format", |
| 71 |
| 72 # TODO(charujain): Clean this dependency when downstream projects are |
| 73 # updated to properly depend on audio_format_conversion target. |
| 74 ":audio_format_conversion", |
71 "../../base:rtc_base_approved", | 75 "../../base:rtc_base_approved", |
72 ] | 76 ] |
73 } | 77 } |
74 | 78 |
75 rtc_static_library("builtin_audio_decoder_factory") { | 79 rtc_static_library("builtin_audio_decoder_factory") { |
76 sources = [ | 80 sources = [ |
77 "codecs/builtin_audio_decoder_factory.cc", | 81 "codecs/builtin_audio_decoder_factory.cc", |
78 "codecs/builtin_audio_decoder_factory.h", | 82 "codecs/builtin_audio_decoder_factory.h", |
79 ] | 83 ] |
80 deps = [ | 84 deps = [ |
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1672 "../../test:test_support_main", | 1676 "../../test:test_support_main", |
1673 "//testing/gtest", | 1677 "//testing/gtest", |
1674 ] | 1678 ] |
1675 | 1679 |
1676 if (!build_with_chromium && is_clang) { | 1680 if (!build_with_chromium && is_clang) { |
1677 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1681 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
1678 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1682 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1679 } | 1683 } |
1680 } | 1684 } |
1681 } | 1685 } |
OLD | NEW |