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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 'dependencies': [ | 170 'dependencies': [ |
171 '<(DEPTH)/testing/gtest.gyp:gtest', | 171 '<(DEPTH)/testing/gtest.gyp:gtest', |
172 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 172 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
173 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 173 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
174 ], | 174 ], |
175 'sources': [ | 175 'sources': [ |
176 'agc/activity_metric.cc', | 176 'agc/activity_metric.cc', |
177 ], | 177 ], |
178 }, # activity_metric | 178 }, # activity_metric |
179 { | 179 { |
180 'target_name': 'audio_e2e_harness', | |
181 'type': 'executable', | |
182 'dependencies': [ | |
183 '<(webrtc_root)/test/test.gyp:channel_transport', | |
184 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', | |
185 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | |
186 '<(DEPTH)/testing/gtest.gyp:gtest', | |
187 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
188 ], | |
189 'sources': [ | |
190 'e2e_quality/audio/audio_e2e_harness.cc', | |
191 ], | |
192 }, # audio_e2e_harness | |
193 { | |
194 'target_name': 'tools_unittests', | 180 'target_name': 'tools_unittests', |
195 'type': '<(gtest_target_type)', | 181 'type': '<(gtest_target_type)', |
196 'dependencies': [ | 182 'dependencies': [ |
197 'frame_editing_lib', | 183 'frame_editing_lib', |
198 'video_quality_analysis', | 184 'video_quality_analysis', |
199 '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', | 185 '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', |
200 '<(webrtc_root)/test/test.gyp:test_support_main', | 186 '<(webrtc_root)/test/test.gyp:test_support_main', |
201 '<(DEPTH)/testing/gtest.gyp:gtest', | 187 '<(DEPTH)/testing/gtest.gyp:gtest', |
202 ], | 188 ], |
203 'sources': [ | 189 'sources': [ |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 'sources': [ | 271 'sources': [ |
286 'tools_unittests.isolate', | 272 'tools_unittests.isolate', |
287 ], | 273 ], |
288 }, | 274 }, |
289 ], | 275 ], |
290 }], | 276 }], |
291 ], | 277 ], |
292 }], # include_tests | 278 }], # include_tests |
293 ], # conditions | 279 ], # conditions |
294 } | 280 } |
OLD | NEW |