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

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

Issue 2306083002: Adding basic implementation of AudioNetworkAdaptor. (Closed)
Patch Set: more polish Created 4 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/webrtc.gni") 9 import("../../build/webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 rtc_opus_dir, 694 rtc_opus_dir,
695 ] 695 ]
696 } else if (build_with_mozilla) { 696 } else if (build_with_mozilla) {
697 include_dirs = [ getenv("DIST") + "/include/opus" ] 697 include_dirs = [ getenv("DIST") + "/include/opus" ]
698 } 698 }
699 } 699 }
700 700
701 source_set("audio_network_adaptor") { 701 source_set("audio_network_adaptor") {
702 sources = [ 702 sources = [
703 "audio_network_adaptor/audio_network_adaptor.cc", 703 "audio_network_adaptor/audio_network_adaptor.cc",
704 "audio_network_adaptor/audio_network_adaptor_impl.cc",
705 "audio_network_adaptor/audio_network_adaptor_impl.h",
706 "audio_network_adaptor/controller.cc",
707 "audio_network_adaptor/controller.h",
708 "audio_network_adaptor/controller_manager.cc",
709 "audio_network_adaptor/controller_manager.h",
704 "audio_network_adaptor/include/audio_network_adaptor.h", 710 "audio_network_adaptor/include/audio_network_adaptor.h",
705 ] 711 ]
706 configs += [ "../..:common_config" ] 712 configs += [ "../..:common_config" ]
707 public_configs = [ "../..:common_inherited_config" ] 713 public_configs = [ "../..:common_inherited_config" ]
708 } 714 }
709 715
710 config("neteq_config") { 716 config("neteq_config") {
711 include_dirs = [ 717 include_dirs = [
712 # Need Opus header files for the audio classifier. 718 # Need Opus header files for the audio classifier.
713 "//third_party/opus/src/celt", 719 "//third_party/opus/src/celt",
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
1559 "//testing/gtest", 1565 "//testing/gtest",
1560 ] 1566 ]
1561 1567
1562 if (is_clang) { 1568 if (is_clang) {
1563 # Suppress warnings from Chrome's Clang plugins. 1569 # Suppress warnings from Chrome's Clang plugins.
1564 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 1570 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
1565 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1571 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1566 } 1572 }
1567 } 1573 }
1568 } 1574 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/audio_coding/audio_network_adaptor/audio_network_adaptor.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698