| 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 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 ":neteq", | 1023 ":neteq", |
| 1024 ":neteq_unittest_tools", | 1024 ":neteq_unittest_tools", |
| 1025 "../../common_audio/", | 1025 "../../common_audio/", |
| 1026 "../../test:test_support_main", | 1026 "../../test:test_support_main", |
| 1027 "//testing/gtest", | 1027 "//testing/gtest", |
| 1028 ] | 1028 ] |
| 1029 | 1029 |
| 1030 if (is_android) { | 1030 if (is_android) { |
| 1031 deps += [ "//testing/android/native_test:native_test_native_code" ] | 1031 deps += [ "//testing/android/native_test:native_test_native_code" ] |
| 1032 shard_timeout = 900 | 1032 shard_timeout = 900 |
| 1033 |
| 1034 data = [ |
| 1035 "//resources/audio_coding/testfile32kHz.pcm", |
| 1036 ] |
| 1033 } | 1037 } |
| 1034 | 1038 |
| 1035 if (is_ios) { | 1039 if (is_ios) { |
| 1036 data = [ | 1040 data = [ |
| 1037 "//resources/audio_coding/testfile32kHz.pcm", | 1041 "//resources/audio_coding/testfile32kHz.pcm", |
| 1038 ] | 1042 ] |
| 1039 } | 1043 } |
| 1040 } # audio_decoder_unittests | 1044 } # audio_decoder_unittests |
| 1041 | 1045 |
| 1042 if (rtc_enable_protobuf) { | 1046 if (rtc_enable_protobuf) { |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1473 deps = [ | 1477 deps = [ |
| 1474 ":g711", | 1478 ":g711", |
| 1475 ":neteq", | 1479 ":neteq", |
| 1476 ":neteq_test_support", | 1480 ":neteq_test_support", |
| 1477 "../../test:test_support_main", | 1481 "../../test:test_support_main", |
| 1478 "//testing/gtest", | 1482 "//testing/gtest", |
| 1479 "//third_party/gflags", | 1483 "//third_party/gflags", |
| 1480 ] | 1484 ] |
| 1481 } | 1485 } |
| 1482 } | 1486 } |
| OLD | NEW |