Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1342933005: Move AudioDecoderOpus next to AudioEncoderOpus (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("../../build/webrtc.gni") 10 import("../../build/webrtc.gni")
(...skipping 644 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 ":pcm16b_config", 655 ":pcm16b_config",
656 ] 656 ]
657 } 657 }
658 658
659 config("opus_config") { 659 config("opus_config") {
660 include_dirs = [ "../../.." ] 660 include_dirs = [ "../../.." ]
661 } 661 }
662 662
663 source_set("webrtc_opus") { 663 source_set("webrtc_opus") {
664 sources = [ 664 sources = [
665 "codecs/opus/audio_decoder_opus.cc",
665 "codecs/opus/audio_encoder_opus.cc", 666 "codecs/opus/audio_encoder_opus.cc",
667 "codecs/opus/interface/audio_decoder_opus.h",
666 "codecs/opus/interface/audio_encoder_opus.h", 668 "codecs/opus/interface/audio_encoder_opus.h",
667 "codecs/opus/interface/opus_interface.h", 669 "codecs/opus/interface/opus_interface.h",
668 "codecs/opus/opus_inst.h", 670 "codecs/opus/opus_inst.h",
669 "codecs/opus/opus_interface.c", 671 "codecs/opus/opus_interface.c",
670 ] 672 ]
671 673
672 deps = [ 674 deps = [
673 ":audio_encoder_interface", 675 ":audio_encoder_interface",
674 ] 676 ]
675 677
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 "../../system_wrappers", 784 "../../system_wrappers",
783 ] 785 ]
784 786
785 defines = [] 787 defines = []
786 788
787 if (rtc_include_opus) { 789 if (rtc_include_opus) {
788 defines += [ "WEBRTC_CODEC_OPUS" ] 790 defines += [ "WEBRTC_CODEC_OPUS" ]
789 deps += [ ":webrtc_opus" ] 791 deps += [ ":webrtc_opus" ]
790 } 792 }
791 } 793 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698