| 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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 ], | 196 ], |
| 197 }, # target rtc_media | 197 }, # target rtc_media |
| 198 ], # targets. | 198 ], # targets. |
| 199 'conditions': [ | 199 'conditions': [ |
| 200 ['include_tests==1', { | 200 ['include_tests==1', { |
| 201 'targets' : [ | 201 'targets' : [ |
| 202 { | 202 { |
| 203 'target_name': 'rtc_unittest_main', | 203 'target_name': 'rtc_unittest_main', |
| 204 'type': 'static_library', | 204 'type': 'static_library', |
| 205 'dependencies': [ | 205 'dependencies': [ |
| 206 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 207 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 206 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', | 208 '<(webrtc_root)/base/base_tests.gyp:rtc_base_tests_utils', |
| 207 ], | 209 ], |
| 208 'direct_dependent_settings': { | 210 'direct_dependent_settings': { |
| 209 'include_dirs': [ | 211 'include_dirs': [ |
| 210 '<(libyuv_dir)/include', | 212 '<(libyuv_dir)/include', |
| 211 '<(DEPTH)/testing/gtest/include', | 213 '<(DEPTH)/testing/gmock/include', |
| 212 '<(DEPTH)/testing/gtest', | |
| 213 ], | 214 ], |
| 214 }, | 215 }, |
| 215 'conditions': [ | 216 'conditions': [ |
| 216 ['build_libyuv==1', { | 217 ['build_libyuv==1', { |
| 217 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',]
, | 218 'dependencies': ['<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',]
, |
| 218 }], | 219 }], |
| 219 ['OS=="ios"', { | 220 ['OS=="ios"', { |
| 220 # TODO(kjellander): Make the code compile without disabling these. | 221 # TODO(kjellander): Make the code compile without disabling these. |
| 221 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 | 222 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 |
| 222 'cflags': [ | 223 'cflags': [ |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 'sources': [ | 377 'sources': [ |
| 377 'rtc_media_unittests.isolate', | 378 'rtc_media_unittests.isolate', |
| 378 ], | 379 ], |
| 379 }, | 380 }, |
| 380 ], | 381 ], |
| 381 }], | 382 }], |
| 382 ], # conditions | 383 ], # conditions |
| 383 }], # include_tests==1 | 384 }], # include_tests==1 |
| 384 ], # conditions | 385 ], # conditions |
| 385 } | 386 } |
| OLD | NEW |