OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_renderer', | 8 'target_name': 'content_renderer', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 ['OS=="mac"', { | 212 ['OS=="mac"', { |
213 'sources!': [ | 213 'sources!': [ |
214 'common/process_watcher_posix.cc', | 214 'common/process_watcher_posix.cc', |
215 ], | 215 ], |
216 'link_settings': { | 216 'link_settings': { |
217 'mac_bundle_resources': [ | 217 'mac_bundle_resources': [ |
218 'renderer/renderer.sb', | 218 'renderer/renderer.sb', |
219 ], | 219 ], |
220 }, | 220 }, |
221 }], | 221 }], |
| 222 ['OS=="win" and win_use_allocator_shim==1', { |
| 223 'dependencies': [ |
| 224 '../base/allocator/allocator.gyp:allocator', |
| 225 ], |
| 226 }], |
222 ['enable_webrtc==1', { | 227 ['enable_webrtc==1', { |
223 'dependencies': [ | 228 'dependencies': [ |
224 '../third_party/webrtc/modules/video_capture/main/source/video_captu
re.gyp:video_capture_module', | 229 '../third_party/webrtc/modules/video_capture/main/source/video_captu
re.gyp:video_capture_module', |
225 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy
stem_wrappers', | 230 '../third_party/webrtc/system_wrappers/source/system_wrappers.gyp:sy
stem_wrappers', |
226 '../third_party/webrtc/video_engine/main/source/video_engine_core.gy
p:video_engine_core', | 231 '../third_party/webrtc/video_engine/main/source/video_engine_core.gy
p:video_engine_core', |
227 '../third_party/webrtc/voice_engine/main/source/voice_engine_core.gy
p:voice_engine_core', | 232 '../third_party/webrtc/voice_engine/main/source/voice_engine_core.gy
p:voice_engine_core', |
228 ], | 233 ], |
229 'sources': [ | 234 'sources': [ |
230 'renderer/media/video_capture_module_impl.cc', | 235 'renderer/media/video_capture_module_impl.cc', |
231 'renderer/media/video_capture_module_impl.h', | 236 'renderer/media/video_capture_module_impl.h', |
232 'renderer/media/video_capture_module_impl_device_info.cc', | 237 'renderer/media/video_capture_module_impl_device_info.cc', |
233 'renderer/media/video_capture_module_impl_device_info.h', | 238 'renderer/media/video_capture_module_impl_device_info.h', |
234 ], | 239 ], |
235 }], | 240 }], |
236 ], | 241 ], |
237 }, | 242 }, |
238 ], | 243 ], |
239 } | 244 } |
OLD | NEW |