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

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

Issue 2202443002: [WebRTC] Add ScreenCapturerDifferWrapper to share Differ across ScreenCapturers (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: 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) 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "mac/scoped_pixel_buffer_object.h", 55 "mac/scoped_pixel_buffer_object.h",
56 "mac/window_list_utils.cc", 56 "mac/window_list_utils.cc",
57 "mac/window_list_utils.h", 57 "mac/window_list_utils.h",
58 "mouse_cursor.cc", 58 "mouse_cursor.cc",
59 "mouse_cursor.h", 59 "mouse_cursor.h",
60 "mouse_cursor_monitor.h", 60 "mouse_cursor_monitor.h",
61 "mouse_cursor_monitor_mac.mm", 61 "mouse_cursor_monitor_mac.mm",
62 "mouse_cursor_monitor_win.cc", 62 "mouse_cursor_monitor_win.cc",
63 "screen_capture_frame_queue.h", 63 "screen_capture_frame_queue.h",
64 "screen_capturer.h", 64 "screen_capturer.h",
65 "screen_capturer_differ_wrapper.cc",
66 "screen_capturer_differ_wrapper.h",
65 "screen_capturer_helper.cc", 67 "screen_capturer_helper.cc",
66 "screen_capturer_helper.h", 68 "screen_capturer_helper.h",
67 "screen_capturer_mac.mm", 69 "screen_capturer_mac.mm",
68 "screen_capturer_win.cc", 70 "screen_capturer_win.cc",
69 "shared_desktop_frame.cc", 71 "shared_desktop_frame.cc",
70 "shared_desktop_frame.h", 72 "shared_desktop_frame.h",
71 "shared_memory.cc", 73 "shared_memory.cc",
72 "shared_memory.h", 74 "shared_memory.h",
73 "win/cursor.cc", 75 "win/cursor.cc",
74 "win/cursor.h", 76 "win/cursor.h",
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 ] 160 ]
159 161
160 configs += [ "../..:common_config" ] 162 configs += [ "../..:common_config" ]
161 public_configs = [ "../..:common_inherited_config" ] 163 public_configs = [ "../..:common_inherited_config" ]
162 164
163 if (is_posix && !is_mac) { 165 if (is_posix && !is_mac) {
164 cflags = [ "-msse2" ] 166 cflags = [ "-msse2" ]
165 } 167 }
166 } 168 }
167 } 169 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698