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

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

Issue 2444583002: Move ScreenCapturer 'real' tests out of screen_capturer_unittest.cc. (Closed)
Patch Set: Resolve review comments Created 4 years, 1 month 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 12 matching lines...) Expand all
23 "desktop_region.h", 23 "desktop_region.h",
24 "shared_desktop_frame.cc", 24 "shared_desktop_frame.cc",
25 "shared_desktop_frame.h", 25 "shared_desktop_frame.h",
26 ] 26 ]
27 27
28 deps = [ 28 deps = [
29 "../../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. 29 "../../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806.
30 ] 30 ]
31 } 31 }
32 32
33 if (rtc_include_tests) {
34 source_set("desktop_capture_test_tools") {
35 testonly = true
36
37 public_deps = [
38 ":desktop_capture",
39 ]
40
41 sources = [
42 "rgba_color.cc",
43 "rgba_color.h",
44 "screen_drawer.cc",
45 "screen_drawer.h",
46 "screen_drawer_linux.cc",
47 "screen_drawer_mac.cc",
48 "screen_drawer_win.cc",
49 ]
50 }
51 }
52
33 rtc_static_library("desktop_capture") { 53 rtc_static_library("desktop_capture") {
34 sources = [ 54 sources = [
35 "cropped_desktop_frame.cc", 55 "cropped_desktop_frame.cc",
36 "cropped_desktop_frame.h", 56 "cropped_desktop_frame.h",
37 "cropping_window_capturer.cc", 57 "cropping_window_capturer.cc",
38 "cropping_window_capturer.h", 58 "cropping_window_capturer.h",
39 "cropping_window_capturer_win.cc", 59 "cropping_window_capturer_win.cc",
40 "desktop_and_cursor_composer.cc", 60 "desktop_and_cursor_composer.cc",
41 "desktop_and_cursor_composer.h", 61 "desktop_and_cursor_composer.h",
42 "desktop_capture_options.cc", 62 "desktop_capture_options.cc",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 sources = [ 194 sources = [
175 "differ_vector_sse2.cc", 195 "differ_vector_sse2.cc",
176 "differ_vector_sse2.h", 196 "differ_vector_sse2.h",
177 ] 197 ]
178 198
179 if (is_posix) { 199 if (is_posix) {
180 cflags = [ "-msse2" ] 200 cflags = [ "-msse2" ]
181 } 201 }
182 } 202 }
183 } 203 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/desktop_capture/screen_capturer_integration_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698