| OLD | NEW |
| (Empty) |
| 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': 'isac_test', | |
| 14 'type': 'executable', | |
| 15 'dependencies': [ | |
| 16 'isac', | |
| 17 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | |
| 18 ], | |
| 19 'include_dirs': [ | |
| 20 './main/include', | |
| 21 './main/test', | |
| 22 './main/util', | |
| 23 '<(webrtc_root)', | |
| 24 ], | |
| 25 'sources': [ | |
| 26 'empty.cc', # force build system to use C++ linker | |
| 27 './main/test/simpleKenny.c', | |
| 28 './main/util/utility.c', | |
| 29 ], | |
| 30 'conditions': [ | |
| 31 ['OS=="win" and clang==1', { | |
| 32 'msvs_settings': { | |
| 33 'VCCLCompilerTool': { | |
| 34 'AdditionalOptions': [ | |
| 35 # Disable warnings failing when compiling with Clang on Windows. | |
| 36 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 | |
| 37 '-Wno-format', | |
| 38 ], | |
| 39 }, | |
| 40 }, | |
| 41 }], | |
| 42 ], # conditions. | |
| 43 }, | |
| 44 # ReleaseTest-API | |
| 45 { | |
| 46 'target_name': 'isac_api_test', | |
| 47 'type': 'executable', | |
| 48 'dependencies': [ | |
| 49 'isac', | |
| 50 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | |
| 51 ], | |
| 52 'include_dirs': [ | |
| 53 './main/test', | |
| 54 './main/include', | |
| 55 './main/util', | |
| 56 '<(webrtc_root)', | |
| 57 ], | |
| 58 'sources': [ | |
| 59 './main/test/ReleaseTest-API/ReleaseTest-API.cc', | |
| 60 './main/util/utility.c', | |
| 61 ], | |
| 62 }, | |
| 63 # SwitchingSampRate | |
| 64 { | |
| 65 'target_name': 'isac_switch_samprate_test', | |
| 66 'type': 'executable', | |
| 67 'dependencies': [ | |
| 68 'isac', | |
| 69 ], | |
| 70 'include_dirs': [ | |
| 71 './main/test', | |
| 72 './main/include', | |
| 73 '../../../../common_audio/signal_processing/include', | |
| 74 './main/util', | |
| 75 '<(webrtc_root)', | |
| 76 ], | |
| 77 'sources': [ | |
| 78 './main/test/SwitchingSampRate/SwitchingSampRate.cc', | |
| 79 './main/util/utility.c', | |
| 80 ], | |
| 81 }, | |
| 82 ], | |
| 83 } | |
| OLD | NEW |