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