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 'targets': [ | 10 'targets': [ |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
229 '<(DEPTH)/testing/gtest.gyp:gtest', | 229 '<(DEPTH)/testing/gtest.gyp:gtest', |
230 ], | 230 ], |
231 'sources': [ | 231 'sources': [ |
232 'test/audio_device_test_func.cc', | 232 'test/audio_device_test_func.cc', |
233 'test/audio_device_test_defines.h', | 233 'test/audio_device_test_defines.h', |
234 'test/func_test_manager.cc', | 234 'test/func_test_manager.cc', |
235 'test/func_test_manager.h', | 235 'test/func_test_manager.h', |
236 ], | 236 ], |
237 }, | 237 }, |
238 ], # targets | 238 ], # targets |
239 'conditions': [ | |
240 ['test_isolation_mode != "noop"', { | |
241 'targets': [ | |
242 { | |
243 'target_name': 'audio_device_tests_run', | |
244 'type': 'none', | |
245 'dependencies': [ | |
246 'audio_device_tests', | |
247 ], | |
248 'includes': [ | |
249 '../../build/isolate.gypi', | |
250 ], | |
251 'sources': [ | |
252 'audio_device_tests.isolate', | |
253 ], | |
254 }, | |
255 ], | |
256 }], | |
257 ], | |
258 }], # include_tests | 239 }], # include_tests |
259 ], | 240 ], |
260 } | 241 } |
261 | 242 |
OLD | NEW |