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