1# Copyright (c) 2012 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    # kenny
12    {
13      'target_name': 'iSACFixtest',
14      'type': 'executable',
15      'dependencies': [
16        'iSACFix',
17        '<(webrtc_root)/test/test.gyp:test_support',
18      ],
19      'include_dirs': [
20        './fix/test',
21        './fix/interface',
22        '<(webrtc_root)',
23      ],
24      'sources': [
25        './fix/test/kenny.cc',
26      ],
27      # Disable warnings to enable Win64 build, issue 1323.
28      'msvs_disabled_warnings': [
29        4267,  # size_t to int truncation.
30      ],
31    },
32  ],
33}
34
35# TODO(kma): Add bit-exact test for iSAC-fix.
36