| 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 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 "codecs/opus/audio_encoder_opus.cc", | 677 "codecs/opus/audio_encoder_opus.cc", |
| 678 "codecs/opus/audio_encoder_opus.h", | 678 "codecs/opus/audio_encoder_opus.h", |
| 679 "codecs/opus/opus_inst.h", | 679 "codecs/opus/opus_inst.h", |
| 680 "codecs/opus/opus_interface.c", | 680 "codecs/opus/opus_interface.c", |
| 681 "codecs/opus/opus_interface.h", | 681 "codecs/opus/opus_interface.h", |
| 682 ] | 682 ] |
| 683 | 683 |
| 684 deps = [ | 684 deps = [ |
| 685 ":audio_decoder_interface", | 685 ":audio_decoder_interface", |
| 686 ":audio_encoder_interface", | 686 ":audio_encoder_interface", |
| 687 ":audio_network_adaptor", |
| 687 "../../base:rtc_base_approved", | 688 "../../base:rtc_base_approved", |
| 688 ] | 689 ] |
| 689 | 690 |
| 690 if (rtc_build_opus) { | 691 if (rtc_build_opus) { |
| 691 public_deps = [ | 692 public_deps = [ |
| 692 rtc_opus_dir, | 693 rtc_opus_dir, |
| 693 ] | 694 ] |
| 694 } else if (build_with_mozilla) { | 695 } else if (build_with_mozilla) { |
| 695 include_dirs = [ getenv("DIST") + "/include/opus" ] | 696 include_dirs = [ getenv("DIST") + "/include/opus" ] |
| 696 } | 697 } |
| (...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1571 "//testing/gtest", | 1572 "//testing/gtest", |
| 1572 ] | 1573 ] |
| 1573 | 1574 |
| 1574 if (is_clang) { | 1575 if (is_clang) { |
| 1575 # Suppress warnings from Chrome's Clang plugins. | 1576 # Suppress warnings from Chrome's Clang plugins. |
| 1576 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 1577 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 1577 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1578 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1578 } | 1579 } |
| 1579 } | 1580 } |
| 1580 } | 1581 } |
| OLD | NEW |