OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 '<(DEPTH)/resources/foreman_cif_short.yuv', | 207 '<(DEPTH)/resources/foreman_cif_short.yuv', |
208 '<(DEPTH)/resources/voice_engine/audio_long16.pcm', | 208 '<(DEPTH)/resources/voice_engine/audio_long16.pcm', |
209 ], | 209 ], |
210 }], | 210 }], |
211 ['enable_protobuf==1', { | 211 ['enable_protobuf==1', { |
212 'defines': [ | 212 'defines': [ |
213 'ENABLE_RTC_EVENT_LOG', | 213 'ENABLE_RTC_EVENT_LOG', |
214 ], | 214 ], |
215 'dependencies': [ | 215 'dependencies': [ |
216 'webrtc.gyp:rtc_event_log', | 216 'webrtc.gyp:rtc_event_log', |
| 217 'webrtc.gyp:rtc_event_log_parser', |
217 'webrtc.gyp:rtc_event_log_proto', | 218 'webrtc.gyp:rtc_event_log_proto', |
218 ], | 219 ], |
219 'sources': [ | 220 'sources': [ |
220 'call/rtc_event_log_unittest.cc', | 221 'call/rtc_event_log_unittest.cc', |
| 222 'call/rtc_event_log_unittest_helper.cc' |
221 ], | 223 ], |
222 }], | 224 }], |
223 ], | 225 ], |
224 }, | 226 }, |
225 { | 227 { |
226 'target_name': 'webrtc_perf_tests', | 228 'target_name': 'webrtc_perf_tests', |
227 'type': '<(gtest_target_type)', | 229 'type': '<(gtest_target_type)', |
228 'sources': [ | 230 'sources': [ |
229 'call/call_perf_tests.cc', | 231 'call/call_perf_tests.cc', |
230 'call/rampup_tests.cc', | 232 'call/rampup_tests.cc', |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 'build/isolate.gypi', | 457 'build/isolate.gypi', |
456 ], | 458 ], |
457 'sources': [ | 459 'sources': [ |
458 'webrtc_perf_tests.isolate', | 460 'webrtc_perf_tests.isolate', |
459 ], | 461 ], |
460 }, | 462 }, |
461 ], | 463 ], |
462 }], | 464 }], |
463 ], | 465 ], |
464 } | 466 } |
OLD | NEW |