| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 { | 9 { |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'audioproc_test_utils', | 12 'target_name': 'audioproc_test_utils', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '<(webrtc_root)/base/base.gyp:rtc_base_approved', | 15 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 16 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 'test/audio_buffer_tools.cc', |
| 20 'test/audio_buffer_tools.h', |
| 19 'test/test_utils.cc', | 21 'test/test_utils.cc', |
| 20 'test/test_utils.h', | 22 'test/test_utils.h', |
| 21 ], | 23 ], |
| 22 }, | 24 }, |
| 23 { | 25 { |
| 24 'target_name': 'transient_suppression_test', | 26 'target_name': 'transient_suppression_test', |
| 25 'type': 'executable', | 27 'type': 'executable', |
| 26 'dependencies': [ | 28 'dependencies': [ |
| 27 '<(DEPTH)/testing/gtest.gyp:gtest', | 29 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 28 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 30 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 150 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| 149 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 151 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
| 150 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 152 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
| 151 ], | 153 ], |
| 152 'sources': [ 'test/unpack.cc', ], | 154 'sources': [ 'test/unpack.cc', ], |
| 153 }, | 155 }, |
| 154 ], | 156 ], |
| 155 }], | 157 }], |
| 156 ], | 158 ], |
| 157 } | 159 } |
| OLD | NEW |