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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 ], | 158 ], |
159 'sources': [ | 159 'sources': [ |
160 'event_log_visualizer/main.cc', | 160 'event_log_visualizer/main.cc', |
161 ], | 161 ], |
162 }, | 162 }, |
163 ], | 163 ], |
164 }], | 164 }], |
165 ['include_tests==1', { | 165 ['include_tests==1', { |
166 'targets' : [ | 166 'targets' : [ |
167 { | 167 { |
168 'target_name': 'agc_test_utils', | |
169 'type': 'static_library', | |
170 'sources': [ | |
171 'agc/test_utils.cc', | |
172 'agc/test_utils.h', | |
173 ], | |
174 }, | |
175 { | |
176 'target_name': 'agc_harness', | |
177 'type': 'executable', | |
178 'dependencies': [ | |
179 '<(DEPTH)/testing/gtest.gyp:gtest', | |
180 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | |
181 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers_
default', | |
182 '<(webrtc_root)/test/test.gyp:channel_transport', | |
183 '<(webrtc_root)/test/test.gyp:test_support', | |
184 '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine', | |
185 ], | |
186 'sources': [ | |
187 'agc/agc_harness.cc', | |
188 ], | |
189 }, # agc_harness | |
190 { | |
191 'target_name': 'activity_metric', | 168 'target_name': 'activity_metric', |
192 'type': 'executable', | 169 'type': 'executable', |
193 'dependencies': [ | 170 'dependencies': [ |
194 '<(DEPTH)/testing/gtest.gyp:gtest', | 171 '<(DEPTH)/testing/gtest.gyp:gtest', |
195 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 172 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
196 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 173 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
197 ], | 174 ], |
198 'sources': [ | 175 'sources': [ |
199 'agc/activity_metric.cc', | 176 'agc/activity_metric.cc', |
200 ], | 177 ], |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 'sources': [ | 285 'sources': [ |
309 'tools_unittests.isolate', | 286 'tools_unittests.isolate', |
310 ], | 287 ], |
311 }, | 288 }, |
312 ], | 289 ], |
313 }], | 290 }], |
314 ], | 291 ], |
315 }], # include_tests | 292 }], # include_tests |
316 ], # conditions | 293 ], # conditions |
317 } | 294 } |
OLD | NEW |