| 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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 839 deps = [ | 839 deps = [ |
| 840 ":audio_decoder_interface", | 840 ":audio_decoder_interface", |
| 841 ":builtin_audio_decoder_factory", | 841 ":builtin_audio_decoder_factory", |
| 842 ":cng", | 842 ":cng", |
| 843 ":g711", | 843 ":g711", |
| 844 ":pcm16b", | 844 ":pcm16b", |
| 845 ":rent_a_codec", | 845 ":rent_a_codec", |
| 846 "../..:webrtc_common", | 846 "../..:webrtc_common", |
| 847 "../../common_audio", | 847 "../../common_audio", |
| 848 "../../system_wrappers", | 848 "../../system_wrappers", |
| 849 "../utility:audio_frame_operations", |
| 849 ] | 850 ] |
| 850 | 851 |
| 851 defines = [] | 852 defines = [] |
| 852 | 853 |
| 853 if (rtc_include_ilbc) { | 854 if (rtc_include_ilbc) { |
| 854 defines += [ "WEBRTC_CODEC_ILBC" ] | 855 defines += [ "WEBRTC_CODEC_ILBC" ] |
| 855 deps += [ ":ilbc" ] | 856 deps += [ ":ilbc" ] |
| 856 } | 857 } |
| 857 if (rtc_include_opus) { | 858 if (rtc_include_opus) { |
| 858 defines += [ "WEBRTC_CODEC_OPUS" ] | 859 defines += [ "WEBRTC_CODEC_OPUS" ] |
| (...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1612 "../../test:test_support_main", | 1613 "../../test:test_support_main", |
| 1613 "//testing/gtest", | 1614 "//testing/gtest", |
| 1614 ] | 1615 ] |
| 1615 | 1616 |
| 1616 if (!build_with_chromium && is_clang) { | 1617 if (!build_with_chromium && is_clang) { |
| 1617 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 1618 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 1618 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 1619 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 1619 } | 1620 } |
| 1620 } | 1621 } |
| 1621 } | 1622 } |
| OLD | NEW |