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 ":audio_format_conversion", | |
kwiberg-webrtc
2016/11/02 10:00:42
Thanks, but this doesn't look right. audio_decoder
kjellander_webrtc
2016/11/02 10:15:08
You're right. But as there are now downstream proj
kwiberg-webrtc
2016/11/02 10:23:14
Right. I'm not usually an "end justifies the means
| |
71 "../../base:rtc_base_approved", | 72 "../../base:rtc_base_approved", |
72 ] | 73 ] |
73 } | 74 } |
74 | 75 |
75 rtc_static_library("builtin_audio_decoder_factory") { | 76 rtc_static_library("builtin_audio_decoder_factory") { |
76 sources = [ | 77 sources = [ |
77 "codecs/builtin_audio_decoder_factory.cc", | 78 "codecs/builtin_audio_decoder_factory.cc", |
78 "codecs/builtin_audio_decoder_factory.h", | 79 "codecs/builtin_audio_decoder_factory.h", |
79 ] | 80 ] |
80 deps = [ | 81 deps = [ |
(...skipping 1591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1672 "../../test:test_support_main", | 1673 "../../test:test_support_main", |
1673 "//testing/gtest", | 1674 "//testing/gtest", |
1674 ] | 1675 ] |
1675 | 1676 |
1676 if (!build_with_chromium && is_clang) { | 1677 if (!build_with_chromium && is_clang) { |
1677 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1678 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
1678 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1679 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
1679 } | 1680 } |
1680 } | 1681 } |
1681 } | 1682 } |
OLD | NEW |