1# Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 2# 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 5# tree. An additional intellectual property rights grant can be found 6# in the file PATENTS. All contributing project authors may 7# be found in the AUTHORS file in the root of the source tree. 8 9{ 10 'includes': [ '../build/common.gypi', ], 11 'targets': [ 12 { 13 'target_name': 'rtc_sound_unittest', 14 'type': 'executable', 15 'dependencies': [ 16 '<(DEPTH)/testing/gtest.gyp:gtest', 17 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', 18 '<(webrtc_root)/sound/sound.gyp:rtc_sound', 19 ], 20 'cflags_cc!': [ 21 '-Wnon-virtual-dtor', 22 ], 23 'sources': [ 24 'automaticallychosensoundsystem_unittest.cc', 25 ], 26 }, 27 ], 28 'conditions': [ 29 ['test_isolation_mode != "noop"', { 30 'targets': [ 31 { 32 'target_name': 'rtc_sound_unittest_run', 33 'type': 'none', 34 'dependencies': [ 35 'rtc_sound_unittest', 36 ], 37 'includes': [ 38 '../build/isolate.gypi', 39 'rtc_sound_unittest.isolate', 40 ], 41 'sources': [ 42 'rtc_sound_unittest.isolate', 43 ], 44 }, 45 ], 46 }], 47 ], 48} 49 50