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

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

Issue 2609443003: Refactoring ./webrtc/modules/BUILD.gn for gn check (Closed)
Patch Set: Using a wildcard because "//webrtc/modules/*" is 100% covered by gn check 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 | « .gn ('k') | webrtc/modules/audio_coding/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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 videoprocessor_defines = [] 59 videoprocessor_defines = []
60 if (rtc_use_h264) { 60 if (rtc_use_h264) {
61 videoprocessor_defines += [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ] 61 videoprocessor_defines += [ "WEBRTC_VIDEOPROCESSOR_H264_TESTS" ]
62 } 62 }
63 63
64 defines = audio_coding_defines + videoprocessor_defines 64 defines = audio_coding_defines + videoprocessor_defines
65 65
66 deps = [ 66 deps = [
67 "..:webrtc_common", 67 "..:webrtc_common",
68 "../base:rtc_base_approved",
68 "../common_video", 69 "../common_video",
69 "../media:rtc_media_base", 70 "../media:rtc_media_base",
70 "../modules/audio_coding", 71 "../modules/audio_coding",
71 "../modules/audio_coding:audio_format_conversion", 72 "../modules/audio_coding:audio_format_conversion",
73 "../modules/audio_coding:g711",
72 "../modules/rtp_rtcp", 74 "../modules/rtp_rtcp",
73 "../modules/utility", 75 "../modules/utility",
74 "../modules/video_coding", 76 "../modules/video_coding",
75 "../modules/video_coding:video_codecs_test_framework", 77 "../modules/video_coding:video_codecs_test_framework",
78 "../modules/video_coding:webrtc_vp9",
76 "../system_wrappers", 79 "../system_wrappers",
77 "../test:test_main", 80 "../test:test_main",
81 "../test:video_test_common",
82 "audio_coding:builtin_audio_decoder_factory",
83 "audio_coding:pcm16b_c",
84 "desktop_capture:primitives",
85 "video_coding:webrtc_h264",
86 "video_coding:webrtc_vp8",
78 "//testing/gmock", 87 "//testing/gmock",
79 "//testing/gtest", 88 "//testing/gtest",
80 ] 89 ]
81 90
82 sources = [ 91 sources = [
83 "audio_coding/test/APITest.cc", 92 "audio_coding/test/APITest.cc",
84 "audio_coding/test/Channel.cc", 93 "audio_coding/test/Channel.cc",
85 "audio_coding/test/EncodeDecodeTest.cc", 94 "audio_coding/test/EncodeDecodeTest.cc",
86 "audio_coding/test/PCMFile.cc", 95 "audio_coding/test/PCMFile.cc",
87 "audio_coding/test/PacketLossTest.cc", 96 "audio_coding/test/PacketLossTest.cc",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc", 268 "audio_coding/audio_network_adaptor/bitrate_controller_unittest.cc",
260 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc", 269 "audio_coding/audio_network_adaptor/channel_controller_unittest.cc",
261 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc", 270 "audio_coding/audio_network_adaptor/controller_manager_unittest.cc",
262 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc", 271 "audio_coding/audio_network_adaptor/dtx_controller_unittest.cc",
263 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc", 272 "audio_coding/audio_network_adaptor/fec_controller_unittest.cc",
264 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc", 273 "audio_coding/audio_network_adaptor/frame_length_controller_unittest.cc",
265 "audio_coding/audio_network_adaptor/mock/mock_controller.h", 274 "audio_coding/audio_network_adaptor/mock/mock_controller.h",
266 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h", 275 "audio_coding/audio_network_adaptor/mock/mock_controller_manager.h",
267 ] 276 ]
268 deps = [ 277 deps = [
278 "../base:rtc_base_approved",
279 "../system_wrappers:system_wrappers",
280 "../test:field_trial",
281 "../test:test_support",
269 "audio_coding:audio_network_adaptor", 282 "audio_coding:audio_network_adaptor",
270 "//testing/gmock", 283 "//testing/gmock",
271 "//testing/gtest", 284 "//testing/gtest",
272 ] 285 ]
273 if (rtc_enable_protobuf) { 286 if (rtc_enable_protobuf) {
274 deps += [ "audio_coding:ana_config_proto" ] 287 deps += [ "audio_coding:ana_config_proto" ]
275 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ] 288 defines = [ "WEBRTC_AUDIO_NETWORK_ADAPTOR_DEBUG_DUMP" ]
276 } 289 }
277 if (!build_with_chromium && is_clang) { 290 if (!build_with_chromium && is_clang) {
278 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 291 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
279 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 292 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
280 } 293 }
281 } 294 }
282 295
283 rtc_test("modules_unittests") { 296 rtc_test("modules_unittests") {
297 #TODO(mbonadei): Remove (bugs.webrtc.org/6828)
mbonadei 2016/12/30 13:36:10 I've disabled the check on this target because it
298 # Errors on a dependency to a protobuffer generated code
299 # this target is not in the visibility list of the generated
300 # target:
301 # //webrtc/modules/audio_processing:audioproc_debug_proto
302 check_includes = false
284 testonly = true 303 testonly = true
285 304
286 defines = audio_coding_defines 305 defines = audio_coding_defines
287 deps = [] 306 deps = [
307 "../base:gtest_prod",
308 "../base:rtc_task_queue",
309 "../system_wrappers:metrics_default",
310 "../test:field_trial",
311 "../test:test_support_unittests",
312 "audio_coding:audio_decoder_interface",
313 "audio_coding:audio_encoder_interface",
314 "audio_coding:audio_format_conversion",
315 "audio_coding:g711",
316 "audio_coding:ilbc",
317 "audio_coding:isac_c",
318 "audio_coding:rent_a_codec",
319 "congestion_controller:congestion_controller",
320 "desktop_capture:primitives",
321 "video_coding:video_coding_utility",
322 "video_coding:webrtc_h264",
323 ]
288 sources = [ 324 sources = [
289 "audio_coding/acm2/acm_receiver_unittest.cc", 325 "audio_coding/acm2/acm_receiver_unittest.cc",
290 "audio_coding/acm2/audio_coding_module_unittest.cc", 326 "audio_coding/acm2/audio_coding_module_unittest.cc",
291 "audio_coding/acm2/call_statistics_unittest.cc", 327 "audio_coding/acm2/call_statistics_unittest.cc",
292 "audio_coding/acm2/codec_manager_unittest.cc", 328 "audio_coding/acm2/codec_manager_unittest.cc",
293 "audio_coding/acm2/rent_a_codec_unittest.cc", 329 "audio_coding/acm2/rent_a_codec_unittest.cc",
294 "audio_coding/codecs/audio_decoder_factory_unittest.cc", 330 "audio_coding/codecs/audio_decoder_factory_unittest.cc",
295 "audio_coding/codecs/cng/audio_encoder_cng_unittest.cc", 331 "audio_coding/codecs/cng/audio_encoder_cng_unittest.cc",
296 "audio_coding/codecs/cng/cng_unittest.cc", 332 "audio_coding/codecs/cng/cng_unittest.cc",
297 "audio_coding/codecs/ilbc/ilbc_unittest.cc", 333 "audio_coding/codecs/ilbc/ilbc_unittest.cc",
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
561 if (rtc_desktop_capture_supported) { 597 if (rtc_desktop_capture_supported) {
562 deps += [ "desktop_capture:desktop_capture_mock" ] 598 deps += [ "desktop_capture:desktop_capture_mock" ]
563 sources += [ 599 sources += [
564 "desktop_capture/desktop_and_cursor_composer_unittest.cc", 600 "desktop_capture/desktop_and_cursor_composer_unittest.cc",
565 "desktop_capture/desktop_capturer_differ_wrapper_unittest.cc", 601 "desktop_capture/desktop_capturer_differ_wrapper_unittest.cc",
566 "desktop_capture/desktop_frame_rotation_unittest.cc", 602 "desktop_capture/desktop_frame_rotation_unittest.cc",
567 "desktop_capture/mouse_cursor_monitor_unittest.cc", 603 "desktop_capture/mouse_cursor_monitor_unittest.cc",
568 "desktop_capture/rgba_color_unittest.cc", 604 "desktop_capture/rgba_color_unittest.cc",
569 "desktop_capture/screen_capturer_helper_unittest.cc", 605 "desktop_capture/screen_capturer_helper_unittest.cc",
570 "desktop_capture/screen_capturer_mac_unittest.cc", 606 "desktop_capture/screen_capturer_mac_unittest.cc",
571 "desktop_capture/screen_capturer_mock_objects.h",
572 "desktop_capture/screen_capturer_unittest.cc", 607 "desktop_capture/screen_capturer_unittest.cc",
573 "desktop_capture/test_utils.cc", 608 "desktop_capture/test_utils.cc",
574 "desktop_capture/test_utils.h", 609 "desktop_capture/test_utils.h",
575 "desktop_capture/test_utils_unittest.cc", 610 "desktop_capture/test_utils_unittest.cc",
576 "desktop_capture/win/cursor_unittest.cc", 611 "desktop_capture/win/cursor_unittest.cc",
577 "desktop_capture/win/cursor_unittest_resources.h", 612 "desktop_capture/win/cursor_unittest_resources.h",
578 "desktop_capture/win/cursor_unittest_resources.rc", 613 "desktop_capture/win/cursor_unittest_resources.rc",
579 "desktop_capture/window_capturer_unittest.cc", 614 "desktop_capture/window_capturer_unittest.cc",
580 ] 615 ]
581 } 616 }
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ] 758 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ]
724 } 759 }
725 760
726 ldflags = [ "-ObjC" ] 761 ldflags = [ "-ObjC" ]
727 } 762 }
728 } 763 }
729 764
730 rtc_test("bwe_simulator") { 765 rtc_test("bwe_simulator") {
731 testonly = true 766 testonly = true
732 767
733 deps = [] 768 deps = [
769 "remote_bitrate_estimator:remote_bitrate_estimator",
770 ]
734 sources = [ 771 sources = [
735 "remote_bitrate_estimator/bwe_simulations.cc", 772 "remote_bitrate_estimator/bwe_simulations.cc",
736 ] 773 ]
737 774
738 if (!build_with_chromium && is_clang) { 775 if (!build_with_chromium && is_clang) {
739 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 776 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
740 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 777 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
741 } 778 }
742 779
743 if (is_win) { 780 if (is_win) {
744 cflags = [ 781 cflags = [
745 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. 782 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
746 "/wd4373", # virtual function override. 783 "/wd4373", # virtual function override.
747 ] 784 ]
748 } 785 }
749 786
750 deps += [ 787 deps += [
751 "..:webrtc_common", 788 "..:webrtc_common",
752 "../base:rtc_base_approved", 789 "../base:rtc_base_approved",
753 "../test:test_common", 790 "../test:test_common",
754 "../test:test_main", 791 "../test:test_main",
755 "remote_bitrate_estimator:bwe_simulator_lib", 792 "remote_bitrate_estimator:bwe_simulator_lib",
756 "video_capture", 793 "video_capture",
757 "//testing/gmock", 794 "//testing/gmock",
758 "//testing/gtest", 795 "//testing/gtest",
759 "//third_party/gflags", 796 "//third_party/gflags",
760 ] 797 ]
761 } 798 }
762 } 799 }
OLDNEW
« no previous file with comments | « .gn ('k') | webrtc/modules/audio_coding/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698