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 'includes': [ 11 '../../../../../common_settings.gypi', 12 ], 13 'targets': [ 14 { 15 'target_name': 'ns', 16 'type': '<(library)', 17 'dependencies': [ 18 '../../../../../common_audio/signal_processing_library/main/source/spl.gyp:spl', 19 '../../../utility/util.gyp:apm_util' 20 ], 21 'include_dirs': [ 22 '../interface', 23 ], 24 'direct_dependent_settings': { 25 'include_dirs': [ 26 '../interface', 27 ], 28 }, 29 'sources': [ 30 '../interface/noise_suppression.h', 31 'noise_suppression.c', 32 'windows_private.h', 33 'defines.h', 34 'ns_core.c', 35 'ns_core.h', 36 ], 37 }, 38 { 39 'target_name': 'ns_fix', 40 'type': '<(library)', 41 'dependencies': [ 42 '../../../../../common_audio/signal_processing_library/main/source/spl.gyp:spl', 43 ], 44 'include_dirs': [ 45 '../interface', 46 ], 47 'direct_dependent_settings': { 48 'include_dirs': [ 49 '../interface', 50 ], 51 }, 52 'sources': [ 53 '../interface/noise_suppression_x.h', 54 'noise_suppression_x.c', 55 'nsx_defines.h', 56 'nsx_core.c', 57 'nsx_core.h', 58 ], 59 }, 60 ], 61 } 62 63 # Local Variables: 64 # tab-width:2 65 # indent-tabs-mode:nil 66 # End: 67 # vim: set expandtab tabstop=2 shiftwidth=2: 68