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

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

Issue 2973183002: Remove remains of webrtc/base (Closed)
Patch Set: Fix error. 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 42 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
43 43
44 if (!build_with_chromium && is_clang) { 44 if (!build_with_chromium && is_clang) {
45 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 45 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
46 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 46 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
47 } 47 }
48 48
49 deps = [ 49 deps = [
50 "..:module_api", 50 "..:module_api",
51 "../..:webrtc_common", 51 "../..:webrtc_common",
52 "../../base:rtc_base",
53 "../../base:rtc_base_approved",
54 "../../base:rtc_numerics",
55 "../../logging:rtc_event_log_api", 52 "../../logging:rtc_event_log_api",
53 "../../rtc_base:rtc_base",
54 "../../rtc_base:rtc_base_approved",
55 "../../rtc_base:rtc_numerics",
56 "../../system_wrappers", 56 "../../system_wrappers",
57 "../bitrate_controller", 57 "../bitrate_controller",
58 "../pacing", 58 "../pacing",
59 "../remote_bitrate_estimator", 59 "../remote_bitrate_estimator",
60 "../rtp_rtcp", 60 "../rtp_rtcp",
61 "../utility", 61 "../utility",
62 ] 62 ]
63 } 63 }
64 64
65 if (rtc_include_tests) { 65 if (rtc_include_tests) {
(...skipping 15 matching lines...) Expand all
81 "delay_based_bwe_unittest_helper.h", 81 "delay_based_bwe_unittest_helper.h",
82 "median_slope_estimator_unittest.cc", 82 "median_slope_estimator_unittest.cc",
83 "probe_bitrate_estimator_unittest.cc", 83 "probe_bitrate_estimator_unittest.cc",
84 "probe_controller_unittest.cc", 84 "probe_controller_unittest.cc",
85 "transport_feedback_adapter_unittest.cc", 85 "transport_feedback_adapter_unittest.cc",
86 "trendline_estimator_unittest.cc", 86 "trendline_estimator_unittest.cc",
87 ] 87 ]
88 deps = [ 88 deps = [
89 ":congestion_controller", 89 ":congestion_controller",
90 ":mock_congestion_controller", 90 ":mock_congestion_controller",
91 "../../base:rtc_base", 91 "../../rtc_base:rtc_base",
92 "../../base:rtc_base_approved", 92 "../../rtc_base:rtc_base_approved",
93 "../../system_wrappers:system_wrappers", 93 "../../system_wrappers:system_wrappers",
94 "../../test:field_trial", 94 "../../test:field_trial",
95 "../../test:test_support", 95 "../../test:test_support",
96 "../bitrate_controller:bitrate_controller", 96 "../bitrate_controller:bitrate_controller",
97 "../pacing:pacing", 97 "../pacing:pacing",
98 "../remote_bitrate_estimator:mock_remote_bitrate_observer", 98 "../remote_bitrate_estimator:mock_remote_bitrate_observer",
99 "../remote_bitrate_estimator:remote_bitrate_estimator", 99 "../remote_bitrate_estimator:remote_bitrate_estimator",
100 "../rtp_rtcp:rtp_rtcp", 100 "../rtp_rtcp:rtp_rtcp",
101 "//testing/gmock", 101 "//testing/gmock",
102 ] 102 ]
103 if (!build_with_chromium && is_clang) { 103 if (!build_with_chromium && is_clang) {
104 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 104 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
105 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 105 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
106 } 106 }
107 } 107 }
108 108
109 rtc_source_set("mock_congestion_controller") { 109 rtc_source_set("mock_congestion_controller") {
110 testonly = true 110 testonly = true
111 sources = [ 111 sources = [
112 "include/mock/mock_congestion_observer.h", 112 "include/mock/mock_congestion_observer.h",
113 "include/mock/mock_send_side_congestion_controller.h", 113 "include/mock/mock_send_side_congestion_controller.h",
114 ] 114 ]
115 deps = [ 115 deps = [
116 ":congestion_controller", 116 ":congestion_controller",
117 "../../test:test_support", 117 "../../test:test_support",
118 ] 118 ]
119 } 119 }
120 } 120 }
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