Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(467)

Side by Side Diff: webrtc/modules/desktop_capture/desktop_capture.gypi

Issue 2202443002: [WebRTC] Add ScreenCapturerDifferWrapper to share Differ across ScreenCapturers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Resolve review comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "mac/window_list_utils.cc", 51 "mac/window_list_utils.cc",
52 "mac/window_list_utils.h", 52 "mac/window_list_utils.h",
53 "mouse_cursor.cc", 53 "mouse_cursor.cc",
54 "mouse_cursor.h", 54 "mouse_cursor.h",
55 "mouse_cursor_monitor.h", 55 "mouse_cursor_monitor.h",
56 "mouse_cursor_monitor_mac.mm", 56 "mouse_cursor_monitor_mac.mm",
57 "mouse_cursor_monitor_win.cc", 57 "mouse_cursor_monitor_win.cc",
58 "mouse_cursor_monitor_x11.cc", 58 "mouse_cursor_monitor_x11.cc",
59 "screen_capture_frame_queue.h", 59 "screen_capture_frame_queue.h",
60 "screen_capturer.h", 60 "screen_capturer.h",
61 "screen_capturer_differ_wrapper.cc",
62 "screen_capturer_differ_wrapper.h",
61 "screen_capturer_helper.cc", 63 "screen_capturer_helper.cc",
62 "screen_capturer_helper.h", 64 "screen_capturer_helper.h",
63 "screen_capturer_mac.mm", 65 "screen_capturer_mac.mm",
64 "screen_capturer_win.cc", 66 "screen_capturer_win.cc",
65 "screen_capturer_x11.cc", 67 "screen_capturer_x11.cc",
66 "shared_desktop_frame.cc", 68 "shared_desktop_frame.cc",
67 "shared_desktop_frame.h", 69 "shared_desktop_frame.h",
68 "shared_memory.cc", 70 "shared_memory.cc",
69 "shared_memory.h", 71 "shared_memory.h",
70 "win/cursor.cc", 72 "win/cursor.cc",
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 ], # targets 164 ], # targets
163 'conditions': [ 165 'conditions': [
164 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { 166 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', {
165 'targets': [ 167 'targets': [
166 { 168 {
167 # Have to be compiled as a separate target because it needs to be 169 # Have to be compiled as a separate target because it needs to be
168 # compiled with SSE2 enabled. 170 # compiled with SSE2 enabled.
169 'target_name': 'desktop_capture_differ_sse2', 171 'target_name': 'desktop_capture_differ_sse2',
170 'type': 'static_library', 172 'type': 'static_library',
171 'sources': [ 173 'sources': [
172 "differ_block_sse2.cc", 174 "differ_vector_sse2.cc",
173 "differ_block_sse2.h", 175 "differ_vector_sse2.h",
174 ], 176 ],
175 'conditions': [ 177 'conditions': [
176 ['os_posix==1', { 178 ['os_posix==1', {
177 'cflags': [ '-msse2', ], 179 'cflags': [ '-msse2', ],
178 'xcode_settings': { 180 'xcode_settings': {
179 'OTHER_CFLAGS': [ '-msse2', ], 181 'OTHER_CFLAGS': [ '-msse2', ],
180 }, 182 },
181 }], 183 }],
182 ], 184 ],
183 }, 185 },
184 ], # targets 186 ], # targets
185 }], 187 }],
186 ], 188 ],
187 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698