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

Unified Diff: webrtc/tools/network_tester/BUILD.gn

Issue 2790513002: Add packet logger and server (Closed)
Patch Set: Set output path Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/tools/network_tester/network_tester_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/network_tester/BUILD.gn
diff --git a/webrtc/tools/network_tester/BUILD.gn b/webrtc/tools/network_tester/BUILD.gn
index 8b1fa85b65cb0fb32110e08176b2bb5b38d48ff4..1ba87ac9577d56bb05aa4fdbaf1ab4870def324d 100644
--- a/webrtc/tools/network_tester/BUILD.gn
+++ b/webrtc/tools/network_tester/BUILD.gn
@@ -28,6 +28,8 @@ if (rtc_enable_protobuf) {
sources = [
"config_reader.cc",
"config_reader.h",
+ "packet_logger.cc",
+ "packet_logger.h",
"packet_sender.cc",
"packet_sender.h",
"test_controller.cc",
@@ -39,6 +41,7 @@ if (rtc_enable_protobuf) {
deps = [
":network_tester_config_proto",
":network_tester_packet_proto",
+ "../../base:protobuf_utils",
"../../base:rtc_task_queue",
"../../p2p",
]
@@ -93,4 +96,19 @@ if (rtc_enable_protobuf) {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
}
+
+ rtc_executable("network_tester_server") {
+ sources = [
+ "server.cc",
+ ]
+
+ deps = [
+ ":network_tester",
+ ]
+
+ if (!build_with_chromium && is_clang) {
+ # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
+ suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
+ }
+ }
}
« no previous file with comments | « no previous file | webrtc/tools/network_tester/network_tester_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698