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

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

Issue 2976293002: Remove remains of webrtc/base (Closed)
Patch Set: Add README.md Created 3 years, 5 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/modules/bitrate_controller/BUILD.gn ('k') | webrtc/modules/desktop_capture/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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 44 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
45 45
46 if (!build_with_chromium && is_clang) { 46 if (!build_with_chromium && is_clang) {
47 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 47 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
48 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 48 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
49 } 49 }
50 50
51 deps = [ 51 deps = [
52 "..:module_api", 52 "..:module_api",
53 "../..:webrtc_common", 53 "../..:webrtc_common",
54 "../../base:rtc_base",
55 "../../base:rtc_base_approved",
56 "../../base:rtc_numerics",
57 "../../logging:rtc_event_log_api", 54 "../../logging:rtc_event_log_api",
55 "../../rtc_base:rtc_base",
56 "../../rtc_base:rtc_base_approved",
57 "../../rtc_base:rtc_numerics",
58 "../../system_wrappers", 58 "../../system_wrappers",
59 "../bitrate_controller", 59 "../bitrate_controller",
60 "../pacing", 60 "../pacing",
61 "../remote_bitrate_estimator", 61 "../remote_bitrate_estimator",
62 "../rtp_rtcp", 62 "../rtp_rtcp",
63 "../utility", 63 "../utility",
64 ] 64 ]
65 } 65 }
66 66
67 if (rtc_include_tests) { 67 if (rtc_include_tests) {
(...skipping 16 matching lines...) Expand all
84 "delay_based_bwe_unittest_helper.h", 84 "delay_based_bwe_unittest_helper.h",
85 "median_slope_estimator_unittest.cc", 85 "median_slope_estimator_unittest.cc",
86 "probe_bitrate_estimator_unittest.cc", 86 "probe_bitrate_estimator_unittest.cc",
87 "probe_controller_unittest.cc", 87 "probe_controller_unittest.cc",
88 "transport_feedback_adapter_unittest.cc", 88 "transport_feedback_adapter_unittest.cc",
89 "trendline_estimator_unittest.cc", 89 "trendline_estimator_unittest.cc",
90 ] 90 ]
91 deps = [ 91 deps = [
92 ":congestion_controller", 92 ":congestion_controller",
93 ":mock_congestion_controller", 93 ":mock_congestion_controller",
94 "../../base:rtc_base", 94 "../../rtc_base:rtc_base",
95 "../../base:rtc_base_approved", 95 "../../rtc_base:rtc_base_approved",
96 "../../base:rtc_base_tests_utils", 96 "../../rtc_base:rtc_base_tests_utils",
97 "../../system_wrappers:system_wrappers", 97 "../../system_wrappers:system_wrappers",
98 "../../test:field_trial", 98 "../../test:field_trial",
99 "../../test:test_support", 99 "../../test:test_support",
100 "../bitrate_controller:bitrate_controller", 100 "../bitrate_controller:bitrate_controller",
101 "../pacing:pacing", 101 "../pacing:pacing",
102 "../remote_bitrate_estimator:mock_remote_bitrate_observer", 102 "../remote_bitrate_estimator:mock_remote_bitrate_observer",
103 "../remote_bitrate_estimator:remote_bitrate_estimator", 103 "../remote_bitrate_estimator:remote_bitrate_estimator",
104 "../rtp_rtcp:rtp_rtcp", 104 "../rtp_rtcp:rtp_rtcp",
105 "//testing/gmock", 105 "//testing/gmock",
106 ] 106 ]
107 if (!build_with_chromium && is_clang) { 107 if (!build_with_chromium && is_clang) {
108 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 108 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
109 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 109 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
110 } 110 }
111 } 111 }
112 112
113 rtc_source_set("mock_congestion_controller") { 113 rtc_source_set("mock_congestion_controller") {
114 testonly = true 114 testonly = true
115 sources = [ 115 sources = [
116 "include/mock/mock_congestion_observer.h", 116 "include/mock/mock_congestion_observer.h",
117 "include/mock/mock_send_side_congestion_controller.h", 117 "include/mock/mock_send_side_congestion_controller.h",
118 ] 118 ]
119 deps = [ 119 deps = [
120 ":congestion_controller", 120 ":congestion_controller",
121 "../../test:test_support", 121 "../../test:test_support",
122 ] 122 ]
123 } 123 }
124 } 124 }
OLDNEW
« no previous file with comments | « webrtc/modules/bitrate_controller/BUILD.gn ('k') | webrtc/modules/desktop_capture/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698