OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 ], # targets. | 191 ], # targets. |
192 'conditions': [ | 192 'conditions': [ |
193 ['include_tests==1', { | 193 ['include_tests==1', { |
194 'targets' : [ | 194 'targets' : [ |
195 { | 195 { |
196 'target_name': 'rtc_unittest_main', | 196 'target_name': 'rtc_unittest_main', |
197 'type': 'static_library', | 197 'type': 'static_library', |
198 'dependencies': [ | 198 'dependencies': [ |
199 '<(DEPTH)/testing/gmock.gyp:gmock', | 199 '<(DEPTH)/testing/gmock.gyp:gmock', |
200 '<(DEPTH)/testing/gtest.gyp:gtest', | 200 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 201 '<(webrtc_root)/api/api.gyp:audio_api', |
201 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', | 202 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', |
202 ], | 203 ], |
203 'direct_dependent_settings': { | 204 'direct_dependent_settings': { |
204 'include_dirs': [ | 205 'include_dirs': [ |
205 '<(libyuv_dir)/include', | 206 '<(libyuv_dir)/include', |
206 '<(DEPTH)/testing/gmock/include', | 207 '<(DEPTH)/testing/gmock/include', |
207 ], | 208 ], |
208 }, | 209 }, |
209 'conditions': [ | 210 'conditions': [ |
210 ['build_libyuv==1', { | 211 ['build_libyuv==1', { |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 'sources': [ | 357 'sources': [ |
357 'rtc_media_unittests.isolate', | 358 'rtc_media_unittests.isolate', |
358 ], | 359 ], |
359 }, | 360 }, |
360 ], | 361 ], |
361 }], | 362 }], |
362 ], # conditions | 363 ], # conditions |
363 }], # include_tests==1 | 364 }], # include_tests==1 |
364 ], # conditions | 365 ], # conditions |
365 } | 366 } |
OLD | NEW |