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

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

Issue 1845113002: DirectX based screen capturer logic (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Remove width change in Texture::Capture Created 4 years, 8 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "mac/scoped_pixel_buffer_object.cc", 49 "mac/scoped_pixel_buffer_object.cc",
50 "mac/scoped_pixel_buffer_object.h", 50 "mac/scoped_pixel_buffer_object.h",
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_content_queue.h",
59 "screen_capture_frame_queue.cc", 60 "screen_capture_frame_queue.cc",
60 "screen_capture_frame_queue.h", 61 "screen_capture_frame_queue.h",
61 "screen_capturer.cc", 62 "screen_capturer.cc",
62 "screen_capturer.h", 63 "screen_capturer.h",
63 "screen_capturer_helper.cc", 64 "screen_capturer_helper.cc",
64 "screen_capturer_helper.h", 65 "screen_capturer_helper.h",
65 "screen_capturer_mac.mm", 66 "screen_capturer_mac.mm",
66 "screen_capturer_win.cc", 67 "screen_capturer_win.cc",
67 "screen_capturer_x11.cc", 68 "screen_capturer_x11.cc",
68 "shared_desktop_frame.cc", 69 "shared_desktop_frame.cc",
69 "shared_desktop_frame.h", 70 "shared_desktop_frame.h",
70 "shared_memory.cc", 71 "shared_memory.cc",
71 "shared_memory.h", 72 "shared_memory.h",
72 "win/cursor.cc", 73 "win/cursor.cc",
73 "win/cursor.h", 74 "win/cursor.h",
74 "win/desktop.cc", 75 "win/desktop.cc",
75 "win/desktop.h", 76 "win/desktop.h",
76 "win/scoped_gdi_object.h", 77 "win/scoped_gdi_object.h",
77 "win/scoped_thread_desktop.cc", 78 "win/scoped_thread_desktop.cc",
78 "win/scoped_thread_desktop.h", 79 "win/scoped_thread_desktop.h",
80 "win/screen_capturer_win_directx.cc",
81 "win/screen_capturer_win_directx.h",
79 "win/screen_capturer_win_gdi.cc", 82 "win/screen_capturer_win_gdi.cc",
80 "win/screen_capturer_win_gdi.h", 83 "win/screen_capturer_win_gdi.h",
81 "win/screen_capturer_win_magnifier.cc", 84 "win/screen_capturer_win_magnifier.cc",
82 "win/screen_capturer_win_magnifier.h", 85 "win/screen_capturer_win_magnifier.h",
83 "win/screen_capture_utils.cc", 86 "win/screen_capture_utils.cc",
84 "win/screen_capture_utils.h", 87 "win/screen_capture_utils.h",
85 "win/window_capture_utils.cc", 88 "win/window_capture_utils.cc",
86 "win/window_capture_utils.h", 89 "win/window_capture_utils.h",
87 "window_capturer.cc", 90 "window_capturer.cc",
88 "window_capturer.h", 91 "window_capturer.h",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 ['OS=="mac"', { 127 ['OS=="mac"', {
125 'link_settings': { 128 'link_settings': {
126 'libraries': [ 129 'libraries': [
127 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 130 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
128 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', 131 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
129 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', 132 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
130 ], 133 ],
131 }, 134 },
132 }], 135 }],
133 ], 136 ],
137 'all_dependent_settings': {
138 'conditions': [
139 ['OS=="win"', {
140 'msvs_settings': {
141 'VCLinkerTool': {
142 'AdditionalDependencies': [
143 'd3d11.lib',
144 ],
145 },
146 },
147 }],
148 ],
149 },
134 }, 150 },
135 ], # targets 151 ], # targets
136 'conditions': [ 152 'conditions': [
137 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { 153 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', {
138 'targets': [ 154 'targets': [
139 { 155 {
140 # Have to be compiled as a separate target because it needs to be 156 # Have to be compiled as a separate target because it needs to be
141 # compiled with SSE2 enabled. 157 # compiled with SSE2 enabled.
142 'target_name': 'desktop_capture_differ_sse2', 158 'target_name': 'desktop_capture_differ_sse2',
143 'type': 'static_library', 159 'type': 'static_library',
144 'sources': [ 160 'sources': [
145 "differ_block_sse2.cc", 161 "differ_block_sse2.cc",
146 "differ_block_sse2.h", 162 "differ_block_sse2.h",
147 ], 163 ],
148 'conditions': [ 164 'conditions': [
149 ['os_posix==1', { 165 ['os_posix==1', {
150 'cflags': [ '-msse2', ], 166 'cflags': [ '-msse2', ],
151 'xcode_settings': { 167 'xcode_settings': {
152 'OTHER_CFLAGS': [ '-msse2', ], 168 'OTHER_CFLAGS': [ '-msse2', ],
153 }, 169 },
154 }], 170 }],
155 ], 171 ],
156 }, 172 },
157 ], # targets 173 ], # targets
158 }], 174 }],
159 ], 175 ],
160 } 176 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698