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

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

Issue 2348803003: Remove differ from ScreenCapturer implementations (Closed)
Patch Set: Comment on the XDamage scenario in screen_capturer_x11.cc Created 4 years, 2 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
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/desktop_capture/desktop_capture.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 if (!is_win && !is_mac && !use_x11) { 117 if (!is_win && !is_mac && !use_x11) {
118 sources += [ 118 sources += [
119 "mouse_cursor_monitor_null.cc", 119 "mouse_cursor_monitor_null.cc",
120 "screen_capturer_null.cc", 120 "screen_capturer_null.cc",
121 "window_capturer_null.cc", 121 "window_capturer_null.cc",
122 ] 122 ]
123 } 123 }
124 124
125 if (!is_ios) { 125 if (!is_ios) {
126 sources += [ 126 sources += [
127 "differ.cc",
128 "differ.h",
129 "differ_block.cc", 127 "differ_block.cc",
130 "differ_block.h", 128 "differ_block.h",
131 "screen_capturer_differ_wrapper.cc", 129 "screen_capturer_differ_wrapper.cc",
132 "screen_capturer_differ_wrapper.h", 130 "screen_capturer_differ_wrapper.h",
133 ] 131 ]
134 } 132 }
135 133
136 if (is_mac) { 134 if (is_mac) {
137 libs = [ 135 libs = [
138 "AppKit.framework", 136 "AppKit.framework",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 sources = [ 171 sources = [
174 "differ_vector_sse2.cc", 172 "differ_vector_sse2.cc",
175 "differ_vector_sse2.h", 173 "differ_vector_sse2.h",
176 ] 174 ]
177 175
178 if (is_posix) { 176 if (is_posix) {
179 cflags = [ "-msse2" ] 177 cflags = [ "-msse2" ]
180 } 178 }
181 } 179 }
182 } 180 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/desktop_capture/desktop_capture.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698