Chromium Code Reviews

Side by Side Diff: webrtc/modules/desktop_capture/BUILD.gn

Issue 1845113002: DirectX based screen capturer logic (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("../../build/webrtc.gni") 10 import("../../build/webrtc.gni")
(...skipping 54 matching lines...)
65 "screen_capturer.cc", 65 "screen_capturer.cc",
66 "screen_capturer.h", 66 "screen_capturer.h",
67 "screen_capturer_helper.cc", 67 "screen_capturer_helper.cc",
68 "screen_capturer_helper.h", 68 "screen_capturer_helper.h",
69 "screen_capturer_mac.mm", 69 "screen_capturer_mac.mm",
70 "screen_capturer_win.cc", 70 "screen_capturer_win.cc",
71 "shared_desktop_frame.cc", 71 "shared_desktop_frame.cc",
72 "shared_desktop_frame.h", 72 "shared_desktop_frame.h",
73 "shared_memory.cc", 73 "shared_memory.cc",
74 "shared_memory.h", 74 "shared_memory.h",
75 "win/callback_shared_memory_factory.h",
75 "win/cursor.cc", 76 "win/cursor.cc",
76 "win/cursor.h", 77 "win/cursor.h",
77 "win/desktop.cc", 78 "win/desktop.cc",
78 "win/desktop.h", 79 "win/desktop.h",
79 "win/scoped_gdi_object.h", 80 "win/scoped_gdi_object.h",
80 "win/scoped_thread_desktop.cc", 81 "win/scoped_thread_desktop.cc",
81 "win/scoped_thread_desktop.h", 82 "win/scoped_thread_desktop.h",
82 "win/screen_capture_utils.cc", 83 "win/screen_capture_utils.cc",
83 "win/screen_capture_utils.h", 84 "win/screen_capture_utils.h",
85 "win/screen_capturer_win_directx.cc",
86 "win/screen_capturer_win_directx.h",
84 "win/screen_capturer_win_gdi.cc", 87 "win/screen_capturer_win_gdi.cc",
85 "win/screen_capturer_win_gdi.h", 88 "win/screen_capturer_win_gdi.h",
86 "win/screen_capturer_win_magnifier.cc", 89 "win/screen_capturer_win_magnifier.cc",
87 "win/screen_capturer_win_magnifier.h", 90 "win/screen_capturer_win_magnifier.h",
88 "win/window_capture_utils.cc", 91 "win/window_capture_utils.cc",
89 "win/window_capture_utils.h", 92 "win/window_capture_utils.h",
90 "window_capturer.cc", 93 "window_capturer.cc",
91 "window_capturer.h", 94 "window_capturer.h",
92 "window_capturer_mac.mm", 95 "window_capturer_mac.mm",
93 "window_capturer_win.cc", 96 "window_capturer_win.cc",
(...skipping 61 matching lines...)
155 ] 158 ]
156 159
157 configs += [ "../..:common_config" ] 160 configs += [ "../..:common_config" ]
158 public_configs = [ "../..:common_inherited_config" ] 161 public_configs = [ "../..:common_inherited_config" ]
159 162
160 if (is_posix && !is_mac) { 163 if (is_posix && !is_mac) {
161 cflags = [ "-msse2" ] 164 cflags = [ "-msse2" ]
162 } 165 }
163 } 166 }
164 } 167 }
OLDNEW

Powered by Google App Engine