| 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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 } else if (build_with_mozilla) { | 694 } else if (build_with_mozilla) { |
| 695 include_dirs = [ getenv("DIST") + "/include/opus" ] | 695 include_dirs = [ getenv("DIST") + "/include/opus" ] |
| 696 } | 696 } |
| 697 } | 697 } |
| 698 | 698 |
| 699 source_set("audio_network_adaptor") { | 699 source_set("audio_network_adaptor") { |
| 700 sources = [ | 700 sources = [ |
| 701 "audio_network_adaptor/audio_network_adaptor.cc", | 701 "audio_network_adaptor/audio_network_adaptor.cc", |
| 702 "audio_network_adaptor/audio_network_adaptor_impl.cc", | 702 "audio_network_adaptor/audio_network_adaptor_impl.cc", |
| 703 "audio_network_adaptor/audio_network_adaptor_impl.h", | 703 "audio_network_adaptor/audio_network_adaptor_impl.h", |
| 704 "audio_network_adaptor/bitrate_controller.cc", |
| 705 "audio_network_adaptor/bitrate_controller.h", |
| 704 "audio_network_adaptor/channel_controller.cc", | 706 "audio_network_adaptor/channel_controller.cc", |
| 705 "audio_network_adaptor/channel_controller.h", | 707 "audio_network_adaptor/channel_controller.h", |
| 706 "audio_network_adaptor/controller.cc", | 708 "audio_network_adaptor/controller.cc", |
| 707 "audio_network_adaptor/controller.h", | 709 "audio_network_adaptor/controller.h", |
| 708 "audio_network_adaptor/controller_manager.cc", | 710 "audio_network_adaptor/controller_manager.cc", |
| 709 "audio_network_adaptor/controller_manager.h", | 711 "audio_network_adaptor/controller_manager.h", |
| 710 "audio_network_adaptor/dtx_controller.cc", | 712 "audio_network_adaptor/dtx_controller.cc", |
| 711 "audio_network_adaptor/dtx_controller.h", | 713 "audio_network_adaptor/dtx_controller.h", |
| 712 "audio_network_adaptor/frame_length_controller.cc", | 714 "audio_network_adaptor/frame_length_controller.cc", |
| 713 "audio_network_adaptor/frame_length_controller.h", | 715 "audio_network_adaptor/frame_length_controller.h", |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1569 "//testing/gtest", | 1571 "//testing/gtest", |
| 1570 ] | 1572 ] |
| 1571 | 1573 |
| 1572 if (is_clang) { | 1574 if (is_clang) { |
| 1573 # Suppress warnings from Chrome's Clang plugins. | 1575 # Suppress warnings from Chrome's Clang plugins. |
| 1574 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1576 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 1575 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1577 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1576 } | 1578 } |
| 1577 } | 1579 } |
| 1578 } | 1580 } |
| OLD | NEW |