Chromium Code Reviews| 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 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 } | 1032 } |
| 1033 | 1033 |
| 1034 if (is_ios) { | 1034 if (is_ios) { |
| 1035 data = [ | 1035 data = [ |
| 1036 "//resources/audio_coding/testfile32kHz.pcm", | 1036 "//resources/audio_coding/testfile32kHz.pcm", |
| 1037 ] | 1037 ] |
| 1038 } | 1038 } |
| 1039 | |
| 1040 if (is_android) { | |
| 1041 shard_timeout = 900 | |
|
kjellander_webrtc
2016/08/15 06:55:08
--> line 1032.
sakal
2016/08/15 07:44:54
Done.
| |
| 1042 } | |
| 1039 } # audio_decoder_unittests | 1043 } # audio_decoder_unittests |
| 1040 | 1044 |
| 1041 if (rtc_enable_protobuf) { | 1045 if (rtc_enable_protobuf) { |
| 1042 proto_library("neteq_unittest_proto") { | 1046 proto_library("neteq_unittest_proto") { |
| 1043 sources = [ | 1047 sources = [ |
| 1044 "neteq/neteq_unittest.proto", | 1048 "neteq/neteq_unittest.proto", |
| 1045 ] | 1049 ] |
| 1046 proto_out_dir = "webrtc/audio_coding/neteq" | 1050 proto_out_dir = "webrtc/audio_coding/neteq" |
| 1047 } | 1051 } |
| 1048 | 1052 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1120 } | 1124 } |
| 1121 | 1125 |
| 1122 deps += [ | 1126 deps += [ |
| 1123 ":isac_fix", | 1127 ":isac_fix", |
| 1124 ":webrtc_opus", | 1128 ":webrtc_opus", |
| 1125 "../../system_wrappers:system_wrappers_default", | 1129 "../../system_wrappers:system_wrappers_default", |
| 1126 "../../test:test_support_main", | 1130 "../../test:test_support_main", |
| 1127 "../audio_processing/", | 1131 "../audio_processing/", |
| 1128 "//testing/gtest", | 1132 "//testing/gtest", |
| 1129 ] | 1133 ] |
| 1134 | |
| 1135 if (is_android) { | |
| 1136 shard_timeout = 900 | |
|
kjellander_webrtc
2016/08/15 06:55:08
--> line 1124.
sakal
2016/08/15 07:44:54
Done.
| |
| 1137 } | |
| 1130 } | 1138 } |
| 1131 | 1139 |
| 1132 source_set("neteq_test_support") { | 1140 source_set("neteq_test_support") { |
| 1133 testonly = true | 1141 testonly = true |
| 1134 sources = [ | 1142 sources = [ |
| 1135 "neteq/tools/neteq_external_decoder_test.cc", | 1143 "neteq/tools/neteq_external_decoder_test.cc", |
| 1136 "neteq/tools/neteq_external_decoder_test.h", | 1144 "neteq/tools/neteq_external_decoder_test.h", |
| 1137 "neteq/tools/neteq_performance_test.cc", | 1145 "neteq/tools/neteq_performance_test.cc", |
| 1138 "neteq/tools/neteq_performance_test.h", | 1146 "neteq/tools/neteq_performance_test.h", |
| 1139 "neteq/tools/neteq_quality_test.cc", | 1147 "neteq/tools/neteq_quality_test.cc", |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1471 deps = [ | 1479 deps = [ |
| 1472 ":g711", | 1480 ":g711", |
| 1473 ":neteq", | 1481 ":neteq", |
| 1474 ":neteq_test_support", | 1482 ":neteq_test_support", |
| 1475 "../../test:test_support_main", | 1483 "../../test:test_support_main", |
| 1476 "//testing/gtest", | 1484 "//testing/gtest", |
| 1477 "//third_party/gflags", | 1485 "//third_party/gflags", |
| 1478 ] | 1486 ] |
| 1479 } | 1487 } |
| 1480 } | 1488 } |
| OLD | NEW |