| 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 1015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1026 ":neteq", | 1026 ":neteq", |
| 1027 ":neteq_unittest_tools", | 1027 ":neteq_unittest_tools", |
| 1028 "../../common_audio/", | 1028 "../../common_audio/", |
| 1029 "../../test:test_support_main", | 1029 "../../test:test_support_main", |
| 1030 "//testing/gtest", | 1030 "//testing/gtest", |
| 1031 ] | 1031 ] |
| 1032 | 1032 |
| 1033 if (is_android) { | 1033 if (is_android) { |
| 1034 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1034 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1035 shard_timeout = 900 | 1035 shard_timeout = 900 |
| 1036 } |
| 1036 | 1037 |
| 1038 if (is_android || is_ios) { |
| 1037 data = [ | 1039 data = [ |
| 1038 "//resources/audio_coding/testfile32kHz.pcm", | 1040 "//resources/audio_coding/testfile32kHz.pcm", |
| 1039 ] | 1041 ] |
| 1040 } | |
| 1041 | |
| 1042 if (is_ios) { | |
| 1043 data = [ | |
| 1044 "//resources/audio_coding/testfile32kHz.pcm", | |
| 1045 ] | |
| 1046 } | 1042 } |
| 1047 } # audio_decoder_unittests | 1043 } # audio_decoder_unittests |
| 1048 | 1044 |
| 1049 if (rtc_enable_protobuf) { | 1045 if (rtc_enable_protobuf) { |
| 1050 proto_library("neteq_unittest_proto") { | 1046 proto_library("neteq_unittest_proto") { |
| 1051 sources = [ | 1047 sources = [ |
| 1052 "neteq/neteq_unittest.proto", | 1048 "neteq/neteq_unittest.proto", |
| 1053 ] | 1049 ] |
| 1054 proto_out_dir = "webrtc/audio_coding/neteq" | 1050 proto_out_dir = "webrtc/audio_coding/neteq" |
| 1055 } | 1051 } |
| (...skipping 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1594 | 1590 |
| 1595 configs += [ "../..:common_config" ] | 1591 configs += [ "../..:common_config" ] |
| 1596 public_configs = [ "../..:common_inherited_config" ] | 1592 public_configs = [ "../..:common_inherited_config" ] |
| 1597 | 1593 |
| 1598 deps = [ | 1594 deps = [ |
| 1599 ":g722", | 1595 ":g722", |
| 1600 "../..:webrtc_common", | 1596 "../..:webrtc_common", |
| 1601 ] | 1597 ] |
| 1602 } | 1598 } |
| 1603 } | 1599 } |
| OLD | NEW |