| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 "/wd4373", # virtual function override. | 57 "/wd4373", # virtual function override. |
| 58 ] | 58 ] |
| 59 } | 59 } |
| 60 | 60 |
| 61 deps = [ | 61 deps = [ |
| 62 ":cng", | 62 ":cng", |
| 63 ":g711", | 63 ":g711", |
| 64 ":g722", | 64 ":g722", |
| 65 ":ilbc", | 65 ":ilbc", |
| 66 ":isac", | 66 ":isac", |
| 67 ":isacfix", | 67 ":isac_fix", |
| 68 ":neteq", | 68 ":neteq", |
| 69 ":pcm16b", | 69 ":pcm16b", |
| 70 ":red", | 70 ":red", |
| 71 "../..:webrtc_common", | 71 "../..:webrtc_common", |
| 72 "../../common_audio", | 72 "../../common_audio", |
| 73 "../../system_wrappers", | 73 "../../system_wrappers", |
| 74 ] | 74 ] |
| 75 | 75 |
| 76 if (rtc_include_opus) { | 76 if (rtc_include_opus) { |
| 77 defines += [ "WEBRTC_CODEC_OPUS" ] | 77 defines += [ "WEBRTC_CODEC_OPUS" ] |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 ] | 462 ] |
| 463 } | 463 } |
| 464 | 464 |
| 465 config("isac_fix_config") { | 465 config("isac_fix_config") { |
| 466 include_dirs = [ | 466 include_dirs = [ |
| 467 "../../..", | 467 "../../..", |
| 468 "codecs/isac/fix/interface", | 468 "codecs/isac/fix/interface", |
| 469 ] | 469 ] |
| 470 } | 470 } |
| 471 | 471 |
| 472 source_set("isacfix") { | 472 source_set("isac_fix") { |
| 473 sources = [ | 473 sources = [ |
| 474 "codecs/isac/audio_encoder_isac_t.h", | 474 "codecs/isac/audio_encoder_isac_t.h", |
| 475 "codecs/isac/audio_encoder_isac_t_impl.h", | 475 "codecs/isac/audio_encoder_isac_t_impl.h", |
| 476 "codecs/isac/fix/interface/audio_encoder_isacfix.h", | 476 "codecs/isac/fix/interface/audio_encoder_isacfix.h", |
| 477 "codecs/isac/fix/interface/isacfix.h", | 477 "codecs/isac/fix/interface/isacfix.h", |
| 478 "codecs/isac/fix/source/arith_routines.c", | 478 "codecs/isac/fix/source/arith_routines.c", |
| 479 "codecs/isac/fix/source/arith_routines_hist.c", | 479 "codecs/isac/fix/source/arith_routines_hist.c", |
| 480 "codecs/isac/fix/source/arith_routines_logist.c", | 480 "codecs/isac/fix/source/arith_routines_logist.c", |
| 481 "codecs/isac/fix/source/arith_routins.h", | 481 "codecs/isac/fix/source/arith_routins.h", |
| 482 "codecs/isac/fix/source/audio_encoder_isacfix.cc", | 482 "codecs/isac/fix/source/audio_encoder_isacfix.cc", |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 ":neteq_config", | 769 ":neteq_config", |
| 770 ] | 770 ] |
| 771 | 771 |
| 772 deps = [ | 772 deps = [ |
| 773 ":audio_decoder_interface", | 773 ":audio_decoder_interface", |
| 774 ":cng", | 774 ":cng", |
| 775 ":g711", | 775 ":g711", |
| 776 ":g722", | 776 ":g722", |
| 777 ":ilbc", | 777 ":ilbc", |
| 778 ":isac", | 778 ":isac", |
| 779 ":isacfix", | 779 ":isac_fix", |
| 780 ":pcm16b", | 780 ":pcm16b", |
| 781 "../..:webrtc_common", | 781 "../..:webrtc_common", |
| 782 "../../common_audio", | 782 "../../common_audio", |
| 783 "../../system_wrappers", | 783 "../../system_wrappers", |
| 784 ] | 784 ] |
| 785 | 785 |
| 786 defines = [] | 786 defines = [] |
| 787 | 787 |
| 788 if (rtc_include_opus) { | 788 if (rtc_include_opus) { |
| 789 defines += [ "WEBRTC_CODEC_OPUS" ] | 789 defines += [ "WEBRTC_CODEC_OPUS" ] |
| 790 deps += [ ":webrtc_opus" ] | 790 deps += [ ":webrtc_opus" ] |
| 791 } | 791 } |
| 792 } | 792 } |
| OLD | NEW |