| OLD | NEW | 
|---|
| 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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") | 
| 10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") | 
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 129   } | 129   } | 
| 130 | 130 | 
| 131   deps = [ | 131   deps = [ | 
| 132     "../system_wrappers:system_wrappers_default", | 132     "../system_wrappers:system_wrappers_default", | 
| 133     "../voice_engine", | 133     "../voice_engine", | 
| 134     "//build/win:default_exe_manifest", | 134     "//build/win:default_exe_manifest", | 
| 135   ] | 135   ] | 
| 136 } | 136 } | 
| 137 | 137 | 
| 138 if (rtc_enable_protobuf) { | 138 if (rtc_enable_protobuf) { | 
| 139   proto_library("graph_proto") { | 139   proto_library("chart_proto") { | 
| 140     sources = [ | 140     sources = [ | 
| 141       "event_log_visualizer/graph.proto", | 141       "event_log_visualizer/chart.proto", | 
| 142     ] | 142     ] | 
| 143     proto_out_dir = "webrtc/tools/event_log_visualizer" | 143     proto_out_dir = "webrtc/tools/event_log_visualizer" | 
| 144   } | 144   } | 
| 145 | 145 | 
| 146   rtc_source_set("event_log_visualizer_utils") { | 146   rtc_source_set("event_log_visualizer_utils") { | 
| 147     sources = [ | 147     sources = [ | 
| 148       "event_log_visualizer/analyzer.cc", | 148       "event_log_visualizer/analyzer.cc", | 
| 149       "event_log_visualizer/analyzer.h", | 149       "event_log_visualizer/analyzer.h", | 
| 150       "event_log_visualizer/plot_base.cc", | 150       "event_log_visualizer/plot_base.cc", | 
| 151       "event_log_visualizer/plot_base.h", | 151       "event_log_visualizer/plot_base.h", | 
| (...skipping 10 matching lines...) Expand all  Loading... | 
| 162     defines = [ "ENABLE_RTC_EVENT_LOG" ] | 162     defines = [ "ENABLE_RTC_EVENT_LOG" ] | 
| 163     deps = [ | 163     deps = [ | 
| 164       "../:rtc_event_log", | 164       "../:rtc_event_log", | 
| 165       "../:rtc_event_log_parser", | 165       "../:rtc_event_log_parser", | 
| 166       "../modules/congestion_controller:congestion_controller", | 166       "../modules/congestion_controller:congestion_controller", | 
| 167       "../modules/rtp_rtcp:rtp_rtcp", | 167       "../modules/rtp_rtcp:rtp_rtcp", | 
| 168       "../system_wrappers:system_wrappers_default", | 168       "../system_wrappers:system_wrappers_default", | 
| 169       "//build/config/sanitizers:deps", | 169       "//build/config/sanitizers:deps", | 
| 170     ] | 170     ] | 
| 171     public_deps = [ | 171     public_deps = [ | 
| 172       ":graph_proto", | 172       ":chart_proto", | 
| 173       "../:rtc_event_log_parser", | 173       "../:rtc_event_log_parser", | 
| 174     ] | 174     ] | 
| 175   } | 175   } | 
| 176 } | 176 } | 
| 177 | 177 | 
| 178 # Exclude tools depending on gflags since that's not available in Chromium. | 178 # Exclude tools depending on gflags since that's not available in Chromium. | 
| 179 if (rtc_include_tests) { | 179 if (rtc_include_tests) { | 
| 180   if (rtc_enable_protobuf) { | 180   if (rtc_enable_protobuf) { | 
| 181     rtc_executable("event_log_visualizer") { | 181     rtc_executable("event_log_visualizer") { | 
| 182       testonly = true | 182       testonly = true | 
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 301       ] | 301       ] | 
| 302       outputs = [ | 302       outputs = [ | 
| 303         "$root_build_dir/{{source_file_part}}", | 303         "$root_build_dir/{{source_file_part}}", | 
| 304       ] | 304       ] | 
| 305       deps = [ | 305       deps = [ | 
| 306         "..:rtc_event_log_proto", | 306         "..:rtc_event_log_proto", | 
| 307       ] | 307       ] | 
| 308     } | 308     } | 
| 309   } | 309   } | 
| 310 } | 310 } | 
| OLD | NEW | 
|---|