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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'msvs_settings': { | 166 'msvs_settings': { |
167 'VCLibrarianTool': { | 167 'VCLibrarianTool': { |
168 'AdditionalDependencies': [ | 168 'AdditionalDependencies': [ |
169 'd3d9.lib', | 169 'd3d9.lib', |
170 'gdi32.lib', | 170 'gdi32.lib', |
171 'strmiids.lib', | 171 'strmiids.lib', |
172 ], | 172 ], |
173 }, | 173 }, |
174 }, | 174 }, |
175 }], | 175 }], |
| 176 ['OS=="mac" and target_arch=="ia32"', { |
| 177 'sources': [ |
| 178 'devices/carbonvideorenderer.cc', |
| 179 'devices/carbonvideorenderer.h', |
| 180 ], |
| 181 'link_settings': { |
| 182 'xcode_settings': { |
| 183 'OTHER_LDFLAGS': [ |
| 184 '-framework Carbon', |
| 185 ], |
| 186 }, |
| 187 }, |
| 188 }], |
| 189 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
| 190 'defines': [ |
| 191 'CARBON_DEPRECATED=YES', |
| 192 ], |
| 193 }], |
176 ], | 194 ], |
177 }, # target rtc_media | 195 }, # target rtc_media |
178 ], # targets. | 196 ], # targets. |
179 'conditions': [ | 197 'conditions': [ |
180 ['include_tests==1', { | 198 ['include_tests==1', { |
181 'targets' : [ | 199 'targets' : [ |
182 { | 200 { |
183 'target_name': 'rtc_unittest_main', | 201 'target_name': 'rtc_unittest_main', |
184 'type': 'static_library', | 202 'type': 'static_library', |
185 'dependencies': [ | 203 'dependencies': [ |
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 'sources': [ | 367 'sources': [ |
350 'rtc_media_unittests.isolate', | 368 'rtc_media_unittests.isolate', |
351 ], | 369 ], |
352 }, | 370 }, |
353 ], | 371 ], |
354 }], | 372 }], |
355 ], # conditions | 373 ], # conditions |
356 }], # include_tests==1 | 374 }], # include_tests==1 |
357 ], # conditions | 375 ], # conditions |
358 } | 376 } |
OLD | NEW |