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

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

Issue 2060403002: Add task queue to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@move_getpadding
Patch Set: Fix audio thread check when adding audio to bitrateallocator. Created 4 years, 4 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
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("//testing/test.gni") 10 import("//testing/test.gni")
(...skipping 17 matching lines...) Expand all
28 "rtp_streams_synchronizer.cc", 28 "rtp_streams_synchronizer.cc",
29 "rtp_streams_synchronizer.h", 29 "rtp_streams_synchronizer.h",
30 "send_delay_stats.cc", 30 "send_delay_stats.cc",
31 "send_delay_stats.h", 31 "send_delay_stats.h",
32 "send_statistics_proxy.cc", 32 "send_statistics_proxy.cc",
33 "send_statistics_proxy.h", 33 "send_statistics_proxy.h",
34 "stats_counter.cc", 34 "stats_counter.cc",
35 "stats_counter.h", 35 "stats_counter.h",
36 "stream_synchronization.cc", 36 "stream_synchronization.cc",
37 "stream_synchronization.h", 37 "stream_synchronization.h",
38 "video_capture_input.cc",
39 "video_capture_input.h",
40 "video_decoder.cc", 38 "video_decoder.cc",
41 "video_encoder.cc", 39 "video_encoder.cc",
42 "video_receive_stream.cc", 40 "video_receive_stream.cc",
43 "video_receive_stream.h", 41 "video_receive_stream.h",
44 "video_send_stream.cc", 42 "video_send_stream.cc",
45 "video_send_stream.h", 43 "video_send_stream.h",
46 "video_stream_decoder.cc", 44 "video_stream_decoder.cc",
47 "video_stream_decoder.h", 45 "video_stream_decoder.h",
48 "vie_encoder.cc", 46 "vie_encoder.cc",
49 "vie_encoder.h", 47 "vie_encoder.h",
50 "vie_remb.cc", 48 "vie_remb.cc",
51 "vie_remb.h", 49 "vie_remb.h",
52 ] 50 ]
53 51
54 configs += [ "..:common_config" ] 52 configs += [ "..:common_config" ]
55 public_configs = [ "..:common_inherited_config" ] 53 public_configs = [ "..:common_inherited_config" ]
56 54
57 if (is_clang) { 55 if (is_clang) {
58 # Suppress warnings from Chrome's Clang plugins. 56 # Suppress warnings from Chrome's Clang plugins.
59 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 57 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
60 configs -= [ "//build/config/clang:find_bad_constructs" ] 58 configs -= [ "//build/config/clang:find_bad_constructs" ]
61 } 59 }
62 60
63 deps = [ 61 deps = [
64 "..:rtc_event_log", 62 "..:rtc_event_log",
65 "..:webrtc_common", 63 "..:webrtc_common",
66 "../base:rtc_base_approved", 64 "../base:rtc_base_approved",
65 "../base:rtc_task_queue",
67 "../common_video", 66 "../common_video",
68 "../modules/bitrate_controller", 67 "../modules/bitrate_controller",
69 "../modules/congestion_controller", 68 "../modules/congestion_controller",
70 "../modules/pacing", 69 "../modules/pacing",
71 "../modules/remote_bitrate_estimator", 70 "../modules/remote_bitrate_estimator",
72 "../modules/rtp_rtcp", 71 "../modules/rtp_rtcp",
73 "../modules/utility", 72 "../modules/utility",
74 "../modules/video_capture:video_capture_module", 73 "../modules/video_capture:video_capture_module",
75 "../modules/video_coding", 74 "../modules/video_coding",
76 "../modules/video_processing", 75 "../modules/video_processing",
(...skipping 10 matching lines...) Expand all
87 "call_stats_unittest.cc", 86 "call_stats_unittest.cc",
88 "encoder_state_feedback_unittest.cc", 87 "encoder_state_feedback_unittest.cc",
89 "end_to_end_tests.cc", 88 "end_to_end_tests.cc",
90 "overuse_frame_detector_unittest.cc", 89 "overuse_frame_detector_unittest.cc",
91 "payload_router_unittest.cc", 90 "payload_router_unittest.cc",
92 "report_block_stats_unittest.cc", 91 "report_block_stats_unittest.cc",
93 "send_delay_stats_unittest.cc", 92 "send_delay_stats_unittest.cc",
94 "send_statistics_proxy_unittest.cc", 93 "send_statistics_proxy_unittest.cc",
95 "stats_counter_unittest.cc", 94 "stats_counter_unittest.cc",
96 "stream_synchronization_unittest.cc", 95 "stream_synchronization_unittest.cc",
97 "video_capture_input_unittest.cc",
98 "video_decoder_unittest.cc", 96 "video_decoder_unittest.cc",
99 "video_encoder_unittest.cc", 97 "video_encoder_unittest.cc",
100 "video_send_stream_tests.cc", 98 "video_send_stream_tests.cc",
99 "vie_encoder_unittest.cc",
101 "vie_remb_unittest.cc", 100 "vie_remb_unittest.cc",
102 ] 101 ]
103 configs += [ "..:common_config" ] 102 configs += [ "..:common_config" ]
104 deps = [ 103 deps = [
105 ":video", 104 ":video",
106 "//testing/gmock", 105 "//testing/gmock",
107 "//testing/gtest", 106 "//testing/gtest",
108 ] 107 ]
109 if (is_clang) { 108 if (is_clang) {
110 # Suppress warnings from the Chromium Clang plugin. 109 # Suppress warnings from the Chromium Clang plugin.
111 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
112 configs -= [ "//build/config/clang:find_bad_constructs" ] 111 configs -= [ "//build/config/clang:find_bad_constructs" ]
113 } 112 }
114 } 113 }
115 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698