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

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

Issue 3011943002: Move optional.h to webrtc/api/ (Closed)
Patch Set: Created 3 years, 3 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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 10
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 cflags = [ 113 cflags = [
114 # TODO(kjellander): Bug 261: fix this warning. 114 # TODO(kjellander): Bug 261: fix this warning.
115 "/wd4373", # virtual function override. 115 "/wd4373", # virtual function override.
116 ] 116 ]
117 } 117 }
118 118
119 deps = [ 119 deps = [
120 ":remote_bitrate_estimator", 120 ":remote_bitrate_estimator",
121 "..:module_api", 121 "..:module_api",
122 "../..:webrtc_common", 122 "../..:webrtc_common",
123 "../../api:optional",
123 "../../rtc_base:gtest_prod", 124 "../../rtc_base:gtest_prod",
124 "../../rtc_base:rtc_base", 125 "../../rtc_base:rtc_base",
125 "../../rtc_base:rtc_base_approved", 126 "../../rtc_base:rtc_base_approved",
126 "../../system_wrappers", 127 "../../system_wrappers",
127 "../../test:test_support", 128 "../../test:test_support",
128 "../../voice_engine", 129 "../../voice_engine",
129 "../bitrate_controller", 130 "../bitrate_controller",
130 "../congestion_controller", 131 "../congestion_controller",
131 "../pacing", 132 "../pacing",
132 "../rtp_rtcp", 133 "../rtp_rtcp",
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 } 234 }
234 235
235 if (is_win) { 236 if (is_win) {
236 cflags = [ 237 cflags = [
237 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. 238 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
238 "/wd4373", # virtual function override. 239 "/wd4373", # virtual function override.
239 ] 240 ]
240 } 241 }
241 } 242 }
242 } 243 }
OLDNEW
« no previous file with comments | « webrtc/modules/pacing/paced_sender.h ('k') | webrtc/modules/remote_bitrate_estimator/include/bwe_defines.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698