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

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

Issue 2362703002: Adding audio network adaptor to AudioEncoderOpus. (Closed)
Patch Set: using old struct Created 4 years, 2 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 "codecs/opus/audio_encoder_opus.cc", 675 "codecs/opus/audio_encoder_opus.cc",
676 "codecs/opus/audio_encoder_opus.h", 676 "codecs/opus/audio_encoder_opus.h",
677 "codecs/opus/opus_inst.h", 677 "codecs/opus/opus_inst.h",
678 "codecs/opus/opus_interface.c", 678 "codecs/opus/opus_interface.c",
679 "codecs/opus/opus_interface.h", 679 "codecs/opus/opus_interface.h",
680 ] 680 ]
681 681
682 deps = [ 682 deps = [
683 ":audio_decoder_interface", 683 ":audio_decoder_interface",
684 ":audio_encoder_interface", 684 ":audio_encoder_interface",
685 ":audio_network_adaptor",
685 "../../base:rtc_base_approved", 686 "../../base:rtc_base_approved",
686 ] 687 ]
687 688
688 if (rtc_build_opus) { 689 if (rtc_build_opus) {
689 public_deps = [ 690 public_deps = [
690 rtc_opus_dir, 691 rtc_opus_dir,
691 ] 692 ]
692 } else if (build_with_mozilla) { 693 } else if (build_with_mozilla) {
693 include_dirs = [ getenv("DIST") + "/include/opus" ] 694 include_dirs = [ getenv("DIST") + "/include/opus" ]
694 } 695 }
(...skipping 902 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 "//testing/gtest", 1598 "//testing/gtest",
1598 ] 1599 ]
1599 1600
1600 if (is_clang) { 1601 if (is_clang) {
1601 # Suppress warnings from Chrome's Clang plugins. 1602 # Suppress warnings from Chrome's Clang plugins.
1602 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1603 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1603 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1604 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1604 } 1605 }
1605 } 1606 }
1606 } 1607 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698