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    # simple kenny
12    {
13      'target_name': 'iSACtest',
14      'type': 'executable',
15      'dependencies': [
16        'iSAC',
17      ],
18      'include_dirs': [
19        './main/test',
20        './main/interface',
21        './main/util',
22        '<(webrtc_root)',
23      ],
24      'sources': [
25        './main/test/simpleKenny.c',
26        './main/util/utility.c',
27      ],
28    },
29    # ReleaseTest-API
30    {
31      'target_name': 'iSACAPITest',
32      'type': 'executable',
33      'dependencies': [
34        'iSAC',
35      ],
36      'include_dirs': [
37        './main/test',
38        './main/interface',
39        './main/util',
40        '<(webrtc_root)',
41      ],
42      'sources': [
43        './main/test/ReleaseTest-API/ReleaseTest-API.cc',
44        './main/util/utility.c',
45      ],
46    },
47    # SwitchingSampRate
48    {
49      'target_name': 'iSACSwitchSampRateTest',
50      'type': 'executable',
51      'dependencies': [
52        'iSAC',
53      ],
54      'include_dirs': [
55        './main/test',
56        './main/interface',
57        '../../../../common_audio/signal_processing/include',
58        './main/util',
59        '<(webrtc_root)',
60      ],
61      'sources': [
62        './main/test/SwitchingSampRate/SwitchingSampRate.cc',
63        './main/util/utility.c',
64      ],    
65    },
66
67  ],
68}
69