audio_decoder.cc depends on LegacyEncodedAudioFrame and LegacyEncodedAudioFrame depends on AudioDecoder::EncodedAudioFrame, so there's no clear way to separate them as of now. This error is also hodling up builds downstream. I expect we'll revisit these dependencies as part of the upcoming larger restructuring effort. NOTRY=true BUG=webrtc:5805 Review-Url: https://codereview.webrtc.org/2359763002 Cr-Commit-Position: refs/heads/master@{#14329}
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
{
|
|
'targets': [
|
|
{
|
|
'target_name': 'audio_decoder_interface',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'audio_decoder.cc',
|
|
'audio_decoder.h',
|
|
'legacy_encoded_audio_frame.cc',
|
|
'legacy_encoded_audio_frame.h',
|
|
],
|
|
'dependencies': [
|
|
'<(webrtc_root)/base/base.gyp:rtc_base_approved',
|
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
|
],
|
|
},
|
|
|
|
{
|
|
'target_name': 'audio_encoder_interface',
|
|
'type': 'static_library',
|
|
'sources': [
|
|
'audio_encoder.cc',
|
|
'audio_encoder.h',
|
|
],
|
|
'dependencies': [
|
|
'<(webrtc_root)/base/base.gyp:rtc_base_approved',
|
|
'<(webrtc_root)/common.gyp:webrtc_common',
|
|
],
|
|
},
|
|
],
|
|
}
|