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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 'test/webrtc_test_common.gyp:webrtc_test_common', | 169 'test/webrtc_test_common.gyp:webrtc_test_common', |
170 'tools/tools.gyp:agc_manager', | 170 'tools/tools.gyp:agc_manager', |
171 'webrtc', | 171 'webrtc', |
172 ], | 172 ], |
173 'conditions': [ | 173 'conditions': [ |
174 ['OS=="android"', { | 174 ['OS=="android"', { |
175 'dependencies': [ | 175 'dependencies': [ |
176 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 176 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
177 ], | 177 ], |
178 }], | 178 }], |
| 179 ['enable_protobuf==1', { |
| 180 'defines': [ |
| 181 'ENABLE_RTC_EVENT_LOG', |
| 182 ], |
| 183 'dependencies': [ |
| 184 'webrtc.gyp:rtc_event_log', |
| 185 'webrtc.gyp:rtc_event_log_proto', |
| 186 ], |
| 187 'sources': [ |
| 188 'video/rtc_event_log_unittest.cc', |
| 189 ], |
| 190 }], |
179 ], | 191 ], |
180 }, | 192 }, |
181 { | 193 { |
182 'target_name': 'webrtc_perf_tests', | 194 'target_name': 'webrtc_perf_tests', |
183 'type': '<(gtest_target_type)', | 195 'type': '<(gtest_target_type)', |
184 'sources': [ | 196 'sources': [ |
185 'modules/audio_coding/neteq/test/neteq_performance_unittest.cc', | 197 'modules/audio_coding/neteq/test/neteq_performance_unittest.cc', |
186 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc', | 198 'modules/remote_bitrate_estimator/remote_bitrate_estimators_test.cc', |
187 | 199 |
188 'tools/agc/agc_manager_integrationtest.cc', | 200 'tools/agc/agc_manager_integrationtest.cc', |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 'build/isolate.gypi', | 290 'build/isolate.gypi', |
279 ], | 291 ], |
280 'sources': [ | 292 'sources': [ |
281 'webrtc_perf_tests.isolate', | 293 'webrtc_perf_tests.isolate', |
282 ], | 294 ], |
283 }, | 295 }, |
284 ], | 296 ], |
285 }], | 297 }], |
286 ], | 298 ], |
287 } | 299 } |
OLD | NEW |