Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

Side by Side Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 2609403002: Refactor webrtc_perf_tests into several source_sets. (Closed)
Patch Set: Moved define. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/call/BUILD.gn ('k') | webrtc/modules/audio_processing/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 ":neteq_speed_test", 1129 ":neteq_speed_test",
1130 ":rtp_analyze", 1130 ":rtp_analyze",
1131 ":rtpcat", 1131 ":rtpcat",
1132 ":webrtc_opus_fec_test", 1132 ":webrtc_opus_fec_test",
1133 ] 1133 ]
1134 if (rtc_enable_protobuf) { 1134 if (rtc_enable_protobuf) {
1135 public_deps += [ ":neteq_rtpplay" ] 1135 public_deps += [ ":neteq_rtpplay" ]
1136 } 1136 }
1137 } 1137 }
1138 1138
1139 rtc_source_set("audio_coding_perf_tests") {
1140 testonly = true
1141 sources = [
1142 "codecs/opus/opus_complexity_unittest.cc",
1143 "neteq/test/neteq_performance_unittest.cc",
1144 ]
1145 deps = [
1146 ":neteq_test_support",
1147 ":neteq_unittest_tools",
1148 ":webrtc_opus",
1149 "../..:webrtc_common",
1150 "../../base:rtc_base_approved",
1151 "../../system_wrappers:system_wrappers",
1152 "../../test:test_support",
1153 ]
1154 if (!build_with_chromium && is_clang) {
1155 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1156 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1157 }
1158 }
1159
1139 rtc_source_set("acm_receive_test") { 1160 rtc_source_set("acm_receive_test") {
1140 testonly = true 1161 testonly = true
1141 sources = [ 1162 sources = [
1142 "acm2/acm_receive_test.cc", 1163 "acm2/acm_receive_test.cc",
1143 "acm2/acm_receive_test.h", 1164 "acm2/acm_receive_test.h",
1144 ] 1165 ]
1145 1166
1146 defines = audio_coding_defines 1167 defines = audio_coding_defines
1147 1168
1148 deps = audio_coding_deps + [ 1169 deps = audio_coding_deps + [
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
1915 "../../test:test_main", 1936 "../../test:test_main",
1916 "//testing/gtest", 1937 "//testing/gtest",
1917 ] 1938 ]
1918 1939
1919 if (!build_with_chromium && is_clang) { 1940 if (!build_with_chromium && is_clang) {
1920 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1941 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1921 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1942 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1922 } 1943 }
1923 } 1944 }
1924 } 1945 }
OLDNEW
« no previous file with comments | « webrtc/call/BUILD.gn ('k') | webrtc/modules/audio_processing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698