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': [ |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 'target_name': 'intelligibility_proc', | 63 'target_name': 'intelligibility_proc', |
64 'type': 'executable', | 64 'type': 'executable', |
65 'dependencies': [ | 65 'dependencies': [ |
66 'audioproc_test_utils', | 66 'audioproc_test_utils', |
67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 67 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
68 '<(DEPTH)/testing/gtest.gyp:gtest', | 68 '<(DEPTH)/testing/gtest.gyp:gtest', |
69 '<(webrtc_root)/modules/modules.gyp:audio_processing', | 69 '<(webrtc_root)/modules/modules.gyp:audio_processing', |
70 '<(webrtc_root)/test/test.gyp:test_support', | 70 '<(webrtc_root)/test/test.gyp:test_support', |
71 ], | 71 ], |
72 'sources': [ | 72 'sources': [ |
73 'intelligibility/intelligibility_proc.cc', | 73 'intelligibility/test/intelligibility_proc.cc', |
74 ], | 74 ], |
75 }, # intelligibility_proc | 75 }, # intelligibility_proc |
76 ], | 76 ], |
77 'conditions': [ | 77 'conditions': [ |
78 ['enable_protobuf==1', { | 78 ['enable_protobuf==1', { |
79 'targets': [ | 79 'targets': [ |
80 { | 80 { |
81 'target_name': 'audioproc_unittest_proto', | 81 'target_name': 'audioproc_unittest_proto', |
82 'type': 'static_library', | 82 'type': 'static_library', |
83 'sources': [ 'test/unittest.proto', ], | 83 'sources': [ 'test/unittest.proto', ], |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
140 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 140 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
141 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 141 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
142 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', | 142 '<(DEPTH)/third_party/gflags/gflags.gyp:gflags', |
143 ], | 143 ], |
144 'sources': [ 'test/unpack.cc', ], | 144 'sources': [ 'test/unpack.cc', ], |
145 }, | 145 }, |
146 ], | 146 ], |
147 }], | 147 }], |
148 ], | 148 ], |
149 } | 149 } |
OLD | NEW |