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

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

Issue 2886713002: Tracking rbe tools with a GN target (Closed)
Patch Set: Avoiding to build bwe_rtp_play and rtp_to_text 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
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc » ('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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 } 50 }
51 51
52 deps = [ 52 deps = [
53 "../..:webrtc_common", 53 "../..:webrtc_common",
54 "../../rtc_base:rtc_base", 54 "../../rtc_base:rtc_base",
55 "../../rtc_base:rtc_base_approved", 55 "../../rtc_base:rtc_base_approved",
56 "../../system_wrappers", 56 "../../system_wrappers",
57 ] 57 ]
58 } 58 }
59 59
60 if (!build_with_chromium) {
61 rtc_source_set("bwe_rtp") {
62 testonly = true
63 sources = [
64 "tools/bwe_rtp.cc",
65 "tools/bwe_rtp.h",
66 ]
67 deps = [
68 ":remote_bitrate_estimator",
69 "../../rtc_base:rtc_base_approved",
70 "../../test:rtp_test_utils",
71 "../rtp_rtcp:rtp_rtcp",
72 ]
73 if (is_clang) {
74 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
75 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
76 }
77 }
78 }
79
60 if (rtc_include_tests) { 80 if (rtc_include_tests) {
61 rtc_static_library("bwe_simulator_lib") { 81 rtc_static_library("bwe_simulator_lib") {
62 testonly = true 82 testonly = true
63 sources = [ 83 sources = [
64 "test/bbr_paced_sender.cc", 84 "test/bbr_paced_sender.cc",
65 "test/bbr_paced_sender.h", 85 "test/bbr_paced_sender.h",
66 "test/bwe.cc", 86 "test/bwe.cc",
67 "test/bwe.h", 87 "test/bwe.h",
68 "test/bwe_test.cc", 88 "test/bwe_test.cc",
69 "test/bwe_test.h", 89 "test/bwe_test.h",
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 } 253 }
234 254
235 if (is_win) { 255 if (is_win) {
236 cflags = [ 256 cflags = [
237 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. 257 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
238 "/wd4373", # virtual function override. 258 "/wd4373", # virtual function override.
239 ] 259 ]
240 } 260 }
241 } 261 }
242 } 262 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/remote_bitrate_estimator/tools/bwe_rtp.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698