| 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/config/arm.gni") | 9 import("//build/config/arm.gni") |
| 10 import("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 defines += [ | 38 defines += [ |
| 39 "WEBRTC_CODEC_ILBC", | 39 "WEBRTC_CODEC_ILBC", |
| 40 "WEBRTC_CODEC_RED", | 40 "WEBRTC_CODEC_RED", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 } | 43 } |
| 44 | 44 |
| 45 config("audio_coding_config") { | 45 config("audio_coding_config") { |
| 46 include_dirs = [ | 46 include_dirs = [ |
| 47 "main/include", | 47 "main/include", |
| 48 "../interface", | 48 "../include", |
| 49 ] | 49 ] |
| 50 } | 50 } |
| 51 | 51 |
| 52 source_set("audio_coding") { | 52 source_set("audio_coding") { |
| 53 sources = [ | 53 sources = [ |
| 54 "main/acm2/acm_common_defs.h", | 54 "main/acm2/acm_common_defs.h", |
| 55 "main/acm2/acm_receiver.cc", | 55 "main/acm2/acm_receiver.cc", |
| 56 "main/acm2/acm_receiver.h", | 56 "main/acm2/acm_receiver.h", |
| 57 "main/acm2/acm_resampler.cc", | 57 "main/acm2/acm_resampler.cc", |
| 58 "main/acm2/acm_resampler.h", | 58 "main/acm2/acm_resampler.h", |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 858 deps += [ ":isac" ] | 858 deps += [ ":isac" ] |
| 859 } | 859 } |
| 860 defines += [ "WEBRTC_CODEC_G722" ] | 860 defines += [ "WEBRTC_CODEC_G722" ] |
| 861 deps += [ ":g722" ] | 861 deps += [ ":g722" ] |
| 862 } | 862 } |
| 863 if (!build_with_mozilla && !build_with_chromium) { | 863 if (!build_with_mozilla && !build_with_chromium) { |
| 864 defines += [ "WEBRTC_CODEC_ILBC" ] | 864 defines += [ "WEBRTC_CODEC_ILBC" ] |
| 865 deps += [ ":ilbc" ] | 865 deps += [ ":ilbc" ] |
| 866 } | 866 } |
| 867 } | 867 } |
| OLD | NEW |