| 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("../../webrtc.gni") | 9 import("../../webrtc.gni") |
| 10 import("audio_coding.gni") | 10 import("audio_coding.gni") |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 | 578 |
| 579 if (is_linux) { | 579 if (is_linux) { |
| 580 libs = [ "m" ] | 580 libs = [ "m" ] |
| 581 } | 581 } |
| 582 | 582 |
| 583 public_configs = [ ":isac_config" ] | 583 public_configs = [ ":isac_config" ] |
| 584 | 584 |
| 585 deps = [ | 585 deps = [ |
| 586 ":isac_common", | 586 ":isac_common", |
| 587 "../..:webrtc_common", | 587 "../..:webrtc_common", |
| 588 "../../base:compile_assert_c", |
| 588 "../../base:rtc_base_approved", | 589 "../../base:rtc_base_approved", |
| 589 "../../common_audio", | 590 "../../common_audio", |
| 590 ] | 591 ] |
| 591 } | 592 } |
| 592 | 593 |
| 593 config("isac_fix_config") { | 594 config("isac_fix_config") { |
| 594 include_dirs = [ | 595 include_dirs = [ |
| 595 "../../..", | 596 "../../..", |
| 596 "codecs/isac/fix/include", | 597 "codecs/isac/fix/include", |
| 597 ] | 598 ] |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 "codecs/isac/fix/source/transform.c", | 678 "codecs/isac/fix/source/transform.c", |
| 678 "codecs/isac/fix/source/transform_tables.c", | 679 "codecs/isac/fix/source/transform_tables.c", |
| 679 ] | 680 ] |
| 680 | 681 |
| 681 public_configs = [ ":isac_fix_config" ] | 682 public_configs = [ ":isac_fix_config" ] |
| 682 | 683 |
| 683 deps = [ | 684 deps = [ |
| 684 ":isac_common", | 685 ":isac_common", |
| 685 "../..:webrtc_common", | 686 "../..:webrtc_common", |
| 686 "../../api/audio_codecs:audio_codecs_api", | 687 "../../api/audio_codecs:audio_codecs_api", |
| 688 "../../base:compile_assert_c", |
| 687 "../../base:rtc_base_approved", | 689 "../../base:rtc_base_approved", |
| 688 "../../common_audio", | 690 "../../common_audio", |
| 689 "../../system_wrappers", | 691 "../../system_wrappers", |
| 690 ] | 692 ] |
| 691 | 693 |
| 692 public_deps = [ | 694 public_deps = [ |
| 693 ":isac_fix_common", | 695 ":isac_fix_common", |
| 694 ] | 696 ] |
| 695 | 697 |
| 696 if (rtc_build_with_neon) { | 698 if (rtc_build_with_neon) { |
| (...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2231 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2233 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
| 2232 # TODO(ossu): Remove this. | 2234 # TODO(ossu): Remove this. |
| 2233 rtc_source_set("builtin_audio_encoder_factory") { | 2235 rtc_source_set("builtin_audio_encoder_factory") { |
| 2234 sources = [ | 2236 sources = [ |
| 2235 "codecs/builtin_audio_encoder_factory.h", | 2237 "codecs/builtin_audio_encoder_factory.h", |
| 2236 ] | 2238 ] |
| 2237 deps = [ | 2239 deps = [ |
| 2238 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2240 "../../api/audio_codecs:builtin_audio_encoder_factory", |
| 2239 ] | 2241 ] |
| 2240 } | 2242 } |
| OLD | NEW |