OLD | NEW |
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 'dependencies': [ | 111 'dependencies': [ |
112 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', | 112 '<(webrtc_root)/webrtc.gyp:rtc_event_log_parser', |
113 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', | 113 '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', |
114 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, | 114 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default'
, |
115 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 115 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
116 ], | 116 ], |
117 'sources': [ | 117 'sources': [ |
118 'event_log_visualizer/analyzer.cc', | 118 'event_log_visualizer/analyzer.cc', |
119 'event_log_visualizer/analyzer.h', | 119 'event_log_visualizer/analyzer.h', |
120 'event_log_visualizer/generate_timeseries.cc', | 120 'event_log_visualizer/generate_timeseries.cc', |
| 121 'event_log_visualizer/plot_base.cc', |
121 'event_log_visualizer/plot_base.h', | 122 'event_log_visualizer/plot_base.h', |
122 'event_log_visualizer/plot_python.cc', | 123 'event_log_visualizer/plot_python.cc', |
123 'event_log_visualizer/plot_python.h', | 124 'event_log_visualizer/plot_python.h', |
124 ], | 125 ], |
125 }, | 126 }, |
126 ], | 127 ], |
127 }], | 128 }], |
128 ['include_tests==1', { | 129 ['include_tests==1', { |
129 'targets' : [ | 130 'targets' : [ |
130 { | 131 { |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 'sources': [ | 272 'sources': [ |
272 'tools_unittests.isolate', | 273 'tools_unittests.isolate', |
273 ], | 274 ], |
274 }, | 275 }, |
275 ], | 276 ], |
276 }], | 277 }], |
277 ], | 278 ], |
278 }], # include_tests | 279 }], # include_tests |
279 ], # conditions | 280 ], # conditions |
280 } | 281 } |
OLD | NEW |