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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 ], # targets. | 189 ], # targets. |
190 'conditions': [ | 190 'conditions': [ |
191 ['include_tests==1', { | 191 ['include_tests==1', { |
192 'targets' : [ | 192 'targets' : [ |
193 { | 193 { |
194 'target_name': 'rtc_unittest_main', | 194 'target_name': 'rtc_unittest_main', |
195 'type': 'static_library', | 195 'type': 'static_library', |
196 'dependencies': [ | 196 'dependencies': [ |
197 '<(DEPTH)/testing/gmock.gyp:gmock', | 197 '<(DEPTH)/testing/gmock.gyp:gmock', |
198 '<(DEPTH)/testing/gtest.gyp:gtest', | 198 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 199 '<(webrtc_root)/api/api.gyp:call_api', |
199 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', | 200 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', |
200 ], | 201 ], |
201 'direct_dependent_settings': { | 202 'direct_dependent_settings': { |
202 'include_dirs': [ | 203 'include_dirs': [ |
203 '<(libyuv_dir)/include', | 204 '<(libyuv_dir)/include', |
204 '<(DEPTH)/testing/gmock/include', | 205 '<(DEPTH)/testing/gmock/include', |
205 ], | 206 ], |
206 }, | 207 }, |
207 'conditions': [ | 208 'conditions': [ |
208 ['build_libyuv==1', { | 209 ['build_libyuv==1', { |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
351 'sources': [ | 352 'sources': [ |
352 'rtc_media_unittests.isolate', | 353 'rtc_media_unittests.isolate', |
353 ], | 354 ], |
354 }, | 355 }, |
355 ], | 356 ], |
356 }], | 357 }], |
357 ], # conditions | 358 ], # conditions |
358 }], # include_tests==1 | 359 }], # include_tests==1 |
359 ], # conditions | 360 ], # conditions |
360 } | 361 } |
OLD | NEW |