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 1551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1562 } | 1562 } |
1563 | 1563 |
1564 if (is_ios) { | 1564 if (is_ios) { |
1565 deps += [ ":audio_codec_speed_tests_data" ] | 1565 deps += [ ":audio_codec_speed_tests_data" ] |
1566 } | 1566 } |
1567 | 1567 |
1568 deps += [ | 1568 deps += [ |
1569 ":isac_fix", | 1569 ":isac_fix", |
1570 ":webrtc_opus", | 1570 ":webrtc_opus", |
1571 "../..:webrtc_common", | 1571 "../..:webrtc_common", |
| 1572 "../../api:libjingle_peerconnection_api", |
1572 "../../rtc_base:rtc_base_approved", | 1573 "../../rtc_base:rtc_base_approved", |
| 1574 "../../system_wrappers:metrics_default", |
1573 "../../system_wrappers:system_wrappers_default", | 1575 "../../system_wrappers:system_wrappers_default", |
| 1576 "../../test:field_trial", |
1574 "../../test:test_main", | 1577 "../../test:test_main", |
1575 "../audio_processing", | 1578 "../audio_processing", |
1576 "//testing/gtest", | 1579 "//testing/gtest", |
1577 ] | 1580 ] |
1578 } | 1581 } |
1579 | 1582 |
1580 rtc_source_set("neteq_test_support") { | 1583 rtc_source_set("neteq_test_support") { |
1581 testonly = true | 1584 testonly = true |
1582 sources = [ | 1585 sources = [ |
1583 "neteq/tools/neteq_external_decoder_test.cc", | 1586 "neteq/tools/neteq_external_decoder_test.cc", |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1695 ":g722", | 1698 ":g722", |
1696 ":ilbc", | 1699 ":ilbc", |
1697 ":isac", | 1700 ":isac", |
1698 ":neteq", | 1701 ":neteq", |
1699 ":neteq_test_tools_deprecated", | 1702 ":neteq_test_tools_deprecated", |
1700 ":pcm16b", | 1703 ":pcm16b", |
1701 ":webrtc_opus", | 1704 ":webrtc_opus", |
1702 "../..:webrtc_common", | 1705 "../..:webrtc_common", |
1703 "../../common_audio", | 1706 "../../common_audio", |
1704 "../../rtc_base:rtc_base_approved", | 1707 "../../rtc_base:rtc_base_approved", |
| 1708 "../../system_wrappers:metrics_default", |
| 1709 "../../test:field_trial", |
1705 ] | 1710 ] |
1706 | 1711 |
1707 configs += [ ":RTPencode_config" ] | 1712 configs += [ ":RTPencode_config" ] |
1708 | 1713 |
1709 sources = [ | 1714 sources = [ |
1710 "neteq/test/PayloadTypes.h", | 1715 "neteq/test/PayloadTypes.h", |
1711 "neteq/test/RTPencode.cc", | 1716 "neteq/test/RTPencode.cc", |
1712 ] | 1717 ] |
1713 | 1718 |
1714 include_dirs = [ | 1719 include_dirs = [ |
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2231 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. | 2236 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. |
2232 # TODO(ossu): Remove this. | 2237 # TODO(ossu): Remove this. |
2233 rtc_source_set("builtin_audio_encoder_factory") { | 2238 rtc_source_set("builtin_audio_encoder_factory") { |
2234 sources = [ | 2239 sources = [ |
2235 "codecs/builtin_audio_encoder_factory.h", | 2240 "codecs/builtin_audio_encoder_factory.h", |
2236 ] | 2241 ] |
2237 deps = [ | 2242 deps = [ |
2238 "../../api/audio_codecs:builtin_audio_encoder_factory", | 2243 "../../api/audio_codecs:builtin_audio_encoder_factory", |
2239 ] | 2244 ] |
2240 } | 2245 } |
OLD | NEW |