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

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

Issue 3005483002: Replace remaining gflags usages with rtc_base/flags (Closed)
Patch Set: Rebase 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "bwe_simulations.cc", 218 "bwe_simulations.cc",
219 ] 219 ]
220 deps = [ 220 deps = [
221 ":bwe_simulator_lib", 221 ":bwe_simulator_lib",
222 ":remote_bitrate_estimator", 222 ":remote_bitrate_estimator",
223 "../..:webrtc_common", 223 "../..:webrtc_common",
224 "../../rtc_base:rtc_base_approved", 224 "../../rtc_base:rtc_base_approved",
225 "../../test:test_main", 225 "../../test:test_main",
226 "//testing/gmock", 226 "//testing/gmock",
227 "//testing/gtest", 227 "//testing/gtest",
228 "//third_party/gflags",
229 ] 228 ]
230 229
231 if (!build_with_chromium && is_clang) { 230 if (!build_with_chromium && is_clang) {
232 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 231 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
233 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 232 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
234 } 233 }
235 234
236 if (is_win) { 235 if (is_win) {
237 cflags = [ 236 cflags = [
238 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. 237 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
239 "/wd4373", # virtual function override. 238 "/wd4373", # virtual function override.
240 ] 239 ]
241 } 240 }
242 } 241 }
243 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698