1 # Copyright (c) 2011 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 'targets': [ 11 { 12 'target_name': 'ns', 13 'type': '<(library)', 14 'dependencies': [ 15 '<(webrtc_root)/common_audio/common_audio.gyp:signal_processing', 16 'apm_util' 17 ], 18 'include_dirs': [ 19 'interface', 20 ], 21 'direct_dependent_settings': { 22 'include_dirs': [ 23 'interface', 24 ], 25 }, 26 'sources': [ 27 'interface/noise_suppression.h', 28 'noise_suppression.c', 29 'windows_private.h', 30 'defines.h', 31 'ns_core.c', 32 'ns_core.h', 33 ], 34 }, 35 { 36 'target_name': 'ns_fix', 37 'type': '<(library)', 38 'dependencies': [ 39 '<(webrtc_root)/common_audio/common_audio.gyp:signal_processing', 40 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', 41 ], 42 'include_dirs': [ 43 'interface', 44 ], 45 'direct_dependent_settings': { 46 'include_dirs': [ 47 'interface', 48 ], 49 }, 50 'sources': [ 51 'interface/noise_suppression_x.h', 52 'noise_suppression_x.c', 53 'nsx_defines.h', 54 'nsx_core.c', 55 'nsx_core.h', 56 ], 57 }, 58 ], 59 } 60