OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 }], | 134 }], |
135 ['OS!="win" and OS!="mac" and use_x11==0', { | 135 ['OS!="win" and OS!="mac" and use_x11==0', { |
136 'sources': [ | 136 'sources': [ |
137 'mouse_cursor_monitor_null.cc', | 137 'mouse_cursor_monitor_null.cc', |
138 'screen_capturer_null.cc', | 138 'screen_capturer_null.cc', |
139 'window_capturer_null.cc', | 139 'window_capturer_null.cc', |
140 ], | 140 ], |
141 }], | 141 }], |
142 ['OS!="ios" ', { | 142 ['OS!="ios" ', { |
143 'sources': [ | 143 'sources': [ |
| 144 'desktop_capturer_differ_wrapper.cc', |
| 145 'desktop_capturer_differ_wrapper.h', |
144 'differ_block.cc', | 146 'differ_block.cc', |
145 'differ_block.h', | 147 'differ_block.h', |
146 'screen_capturer_differ_wrapper.cc', | 148 'screen_capturer_differ_wrapper.cc', |
147 'screen_capturer_differ_wrapper.h', | 149 'screen_capturer_differ_wrapper.h', |
148 ], | 150 ], |
149 }], | 151 }], |
150 ['OS=="mac"', { | 152 ['OS=="mac"', { |
151 'link_settings': { | 153 'link_settings': { |
152 'libraries': [ | 154 'libraries': [ |
153 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', | 155 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 'xcode_settings': { | 193 'xcode_settings': { |
192 'OTHER_CFLAGS': [ '-msse2', ], | 194 'OTHER_CFLAGS': [ '-msse2', ], |
193 }, | 195 }, |
194 }], | 196 }], |
195 ], | 197 ], |
196 }, | 198 }, |
197 ], # targets | 199 ], # targets |
198 }], | 200 }], |
199 ], | 201 ], |
200 } | 202 } |
OLD | NEW |