| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 ['include_tests==1 and OS!="android"', { | 165 ['include_tests==1 and OS!="android"', { |
| 166 'targets': [ | 166 'targets': [ |
| 167 { | 167 { |
| 168 'target_name': 'video_capture_tests', | 168 'target_name': 'video_capture_tests', |
| 169 'type': '<(gtest_target_type)', | 169 'type': '<(gtest_target_type)', |
| 170 'dependencies': [ | 170 'dependencies': [ |
| 171 'video_capture_module', | 171 'video_capture_module', |
| 172 'video_capture_module_internal_impl', | 172 'video_capture_module_internal_impl', |
| 173 'webrtc_utility', | 173 'webrtc_utility', |
| 174 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, | 174 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers'
, |
| 175 '<(webrtc_root)/test/test.gyp:video_test_common', |
| 175 '<(DEPTH)/testing/gtest.gyp:gtest', | 176 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 176 ], | 177 ], |
| 177 'sources': [ | 178 'sources': [ |
| 178 'test/video_capture_unittest.cc', | 179 'test/video_capture_unittest.cc', |
| 179 'test/video_capture_main_mac.mm', | 180 'test/video_capture_main_mac.mm', |
| 180 ], | 181 ], |
| 181 'conditions': [ | 182 'conditions': [ |
| 182 ['OS=="mac" or OS=="linux"', { | 183 ['OS=="mac" or OS=="linux"', { |
| 183 'cflags': [ | 184 'cflags': [ |
| 184 '-Wno-write-strings', | 185 '-Wno-write-strings', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 212 '<(webrtc_root)/test/test.gyp:test_support_main', | 213 '<(webrtc_root)/test/test.gyp:test_support_main', |
| 213 ], | 214 ], |
| 214 }], # OS!="mac" | 215 }], # OS!="mac" |
| 215 ] # conditions | 216 ] # conditions |
| 216 }, | 217 }, |
| 217 ], # targets | 218 ], # targets |
| 218 }], | 219 }], |
| 219 ], | 220 ], |
| 220 } | 221 } |
| 221 | 222 |
| OLD | NEW |