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

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

Issue 2875033002: Add untracked header files to GN targets in audio_coding (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | no next file » | 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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 import("audio_coding.gni") 10 import("audio_coding.gni")
(...skipping 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 rtc_source_set("audio_coding_modules_tests") { 1140 rtc_source_set("audio_coding_modules_tests") {
1141 testonly = true 1141 testonly = true
1142 1142
1143 # Skip restricting visibility on mobile platforms since the tests on those 1143 # Skip restricting visibility on mobile platforms since the tests on those
1144 # gets additional generated targets which would require many lines here to 1144 # gets additional generated targets which would require many lines here to
1145 # cover (which would be confusing to read and hard to maintain). 1145 # cover (which would be confusing to read and hard to maintain).
1146 if (!is_android && !is_ios) { 1146 if (!is_android && !is_ios) {
1147 visibility = [ "//webrtc/modules:modules_tests" ] 1147 visibility = [ "//webrtc/modules:modules_tests" ]
1148 } 1148 }
1149 sources = [ 1149 sources = [
1150 "test/ACMTest.h",
1150 "test/APITest.cc", 1151 "test/APITest.cc",
1152 "test/APITest.h",
1151 "test/Channel.cc", 1153 "test/Channel.cc",
1154 "test/Channel.h",
1152 "test/EncodeDecodeTest.cc", 1155 "test/EncodeDecodeTest.cc",
1156 "test/EncodeDecodeTest.h",
1153 "test/PCMFile.cc", 1157 "test/PCMFile.cc",
1158 "test/PCMFile.h",
1154 "test/PacketLossTest.cc", 1159 "test/PacketLossTest.cc",
1160 "test/PacketLossTest.h",
1155 "test/RTPFile.cc", 1161 "test/RTPFile.cc",
1162 "test/RTPFile.h",
1156 "test/TestAllCodecs.cc", 1163 "test/TestAllCodecs.cc",
1164 "test/TestAllCodecs.h",
1157 "test/TestRedFec.cc", 1165 "test/TestRedFec.cc",
1166 "test/TestRedFec.h",
1158 "test/TestStereo.cc", 1167 "test/TestStereo.cc",
1168 "test/TestStereo.h",
1159 "test/TestVADDTX.cc", 1169 "test/TestVADDTX.cc",
1170 "test/TestVADDTX.h",
1160 "test/Tester.cc", 1171 "test/Tester.cc",
1161 "test/TwoWayCommunication.cc", 1172 "test/TwoWayCommunication.cc",
1173 "test/TwoWayCommunication.h",
1162 "test/iSACTest.cc", 1174 "test/iSACTest.cc",
1175 "test/iSACTest.h",
1163 "test/opus_test.cc", 1176 "test/opus_test.cc",
1177 "test/opus_test.h",
1164 "test/target_delay_unittest.cc", 1178 "test/target_delay_unittest.cc",
1165 "test/utility.cc", 1179 "test/utility.cc",
1180 "test/utility.h",
1166 ] 1181 ]
1167 deps = [ 1182 deps = [
1168 ":audio_coding", 1183 ":audio_coding",
1169 ":audio_coding_module_typedefs", 1184 ":audio_coding_module_typedefs",
1170 ":audio_format_conversion", 1185 ":audio_format_conversion",
1171 ":pcm16b_c", 1186 ":pcm16b_c",
1172 "..:module_api", 1187 "..:module_api",
1173 "../..:webrtc_common", 1188 "../..:webrtc_common",
1174 "../../api/audio_codecs:builtin_audio_decoder_factory", 1189 "../../api/audio_codecs:builtin_audio_decoder_factory",
1175 "../../base:rtc_base_approved", 1190 "../../base:rtc_base_approved",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 "../../base:rtc_base_approved", 1271 "../../base:rtc_base_approved",
1257 "../../test:test_support", 1272 "../../test:test_support",
1258 "//testing/gtest", 1273 "//testing/gtest",
1259 ] 1274 ]
1260 } 1275 }
1261 1276
1262 rtc_executable("delay_test") { 1277 rtc_executable("delay_test") {
1263 testonly = true 1278 testonly = true
1264 sources = [ 1279 sources = [
1265 "test/Channel.cc", 1280 "test/Channel.cc",
1281 "test/Channel.h",
1266 "test/PCMFile.cc", 1282 "test/PCMFile.cc",
1283 "test/PCMFile.h",
1267 "test/delay_test.cc", 1284 "test/delay_test.cc",
1268 "test/utility.cc", 1285 "test/utility.cc",
1286 "test/utility.h",
1269 ] 1287 ]
1270 1288
1271 deps = [ 1289 deps = [
1272 ":audio_coding", 1290 ":audio_coding",
1273 ":audio_coding_module_typedefs", 1291 ":audio_coding_module_typedefs",
1274 ":audio_format_conversion", 1292 ":audio_format_conversion",
1275 "..:module_api", 1293 "..:module_api",
1276 "../../:webrtc_common", 1294 "../../:webrtc_common",
1277 "../../base:rtc_base_approved", 1295 "../../base:rtc_base_approved",
1278 "../../system_wrappers", 1296 "../../system_wrappers",
1279 "../../system_wrappers:system_wrappers_default", 1297 "../../system_wrappers:system_wrappers_default",
1280 "../../test:test_support", 1298 "../../test:test_support",
1281 "../rtp_rtcp", 1299 "../rtp_rtcp",
1282 "//testing/gtest", 1300 "//testing/gtest",
1283 "//third_party/gflags:gflags", 1301 "//third_party/gflags:gflags",
1284 ] 1302 ]
1285 } # delay_test 1303 } # delay_test
1286 1304
1287 rtc_executable("insert_packet_with_timing") { 1305 rtc_executable("insert_packet_with_timing") {
1288 testonly = true 1306 testonly = true
1289 sources = [ 1307 sources = [
1290 "test/Channel.cc", 1308 "test/Channel.cc",
1309 "test/Channel.h",
1291 "test/PCMFile.cc", 1310 "test/PCMFile.cc",
1311 "test/PCMFile.h",
1292 "test/insert_packet_with_timing.cc", 1312 "test/insert_packet_with_timing.cc",
1293 ] 1313 ]
1294 1314
1295 if (!build_with_chromium && is_clang) { 1315 if (!build_with_chromium && is_clang) {
1296 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 1316 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
1297 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 1317 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
1298 } 1318 }
1299 1319
1300 deps = [ 1320 deps = [
1301 ":audio_coding", 1321 ":audio_coding",
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
1674 ":pcm16b", 1694 ":pcm16b",
1675 ":webrtc_opus", 1695 ":webrtc_opus",
1676 "../..:webrtc_common", 1696 "../..:webrtc_common",
1677 "../../base:rtc_base_approved", 1697 "../../base:rtc_base_approved",
1678 "../../common_audio", 1698 "../../common_audio",
1679 ] 1699 ]
1680 1700
1681 configs += [ ":RTPencode_config" ] 1701 configs += [ ":RTPencode_config" ]
1682 1702
1683 sources = [ 1703 sources = [
1704 "neteq/test/PayloadTypes.h",
1684 "neteq/test/RTPencode.cc", 1705 "neteq/test/RTPencode.cc",
1685 ] 1706 ]
1686 1707
1687 include_dirs = [ 1708 include_dirs = [
1688 "neteq/include", 1709 "neteq/include",
1689 "neteq/test", 1710 "neteq/test",
1690 ] 1711 ]
1691 1712
1692 if (is_win) { 1713 if (is_win) {
1693 cflags = [ 1714 cflags = [
(...skipping 516 matching lines...) Expand 10 before | Expand all | Expand 10 after
2210 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead. 2231 # webrtc/api/audio_codecs:builtin_audio_decoder_factory instead.
2211 # TODO(ossu): Remove this. 2232 # TODO(ossu): Remove this.
2212 rtc_source_set("builtin_audio_encoder_factory") { 2233 rtc_source_set("builtin_audio_encoder_factory") {
2213 sources = [ 2234 sources = [
2214 "codecs/builtin_audio_encoder_factory.h", 2235 "codecs/builtin_audio_encoder_factory.h",
2215 ] 2236 ]
2216 deps = [ 2237 deps = [
2217 "../../api/audio_codecs:builtin_audio_encoder_factory", 2238 "../../api/audio_codecs:builtin_audio_encoder_factory",
2218 ] 2239 ]
2219 } 2240 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698