| OLD | NEW |
| 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("../../webrtc.gni") | 10 import("../../webrtc.gni") |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 } | 56 } |
| 57 | 57 |
| 58 rtc_source_set("desktop_capture_unittests") { | 58 rtc_source_set("desktop_capture_unittests") { |
| 59 testonly = true | 59 testonly = true |
| 60 sources = [ | 60 sources = [ |
| 61 "desktop_and_cursor_composer_unittest.cc", | 61 "desktop_and_cursor_composer_unittest.cc", |
| 62 "desktop_capturer_differ_wrapper_unittest.cc", | 62 "desktop_capturer_differ_wrapper_unittest.cc", |
| 63 "desktop_frame_rotation_unittest.cc", | 63 "desktop_frame_rotation_unittest.cc", |
| 64 "desktop_region_unittest.cc", | 64 "desktop_region_unittest.cc", |
| 65 "differ_block_unittest.cc", | 65 "differ_block_unittest.cc", |
| 66 "fallback_desktop_capturer_wrapper_unittest.cc", |
| 66 "mouse_cursor_monitor_unittest.cc", | 67 "mouse_cursor_monitor_unittest.cc", |
| 67 "rgba_color_unittest.cc", | 68 "rgba_color_unittest.cc", |
| 68 "test_utils.cc", | 69 "test_utils.cc", |
| 69 "test_utils.h", | 70 "test_utils.h", |
| 70 "test_utils_unittest.cc", | 71 "test_utils_unittest.cc", |
| 71 "win/cursor_unittest.cc", | 72 "win/cursor_unittest.cc", |
| 72 "win/cursor_unittest_resources.h", | 73 "win/cursor_unittest_resources.h", |
| 73 "win/cursor_unittest_resources.rc", | 74 "win/cursor_unittest_resources.rc", |
| 74 ] | 75 ] |
| 75 deps = [ | 76 deps = [ |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "desktop_capturer.cc", | 179 "desktop_capturer.cc", |
| 179 "desktop_capturer.h", | 180 "desktop_capturer.h", |
| 180 "desktop_capturer_differ_wrapper.cc", | 181 "desktop_capturer_differ_wrapper.cc", |
| 181 "desktop_capturer_differ_wrapper.h", | 182 "desktop_capturer_differ_wrapper.h", |
| 182 "desktop_frame_rotation.cc", | 183 "desktop_frame_rotation.cc", |
| 183 "desktop_frame_rotation.h", | 184 "desktop_frame_rotation.h", |
| 184 "desktop_frame_win.cc", | 185 "desktop_frame_win.cc", |
| 185 "desktop_frame_win.h", | 186 "desktop_frame_win.h", |
| 186 "differ_block.cc", | 187 "differ_block.cc", |
| 187 "differ_block.h", | 188 "differ_block.h", |
| 189 "fallback_desktop_capturer_wrapper.cc", |
| 190 "fallback_desktop_capturer_wrapper.h", |
| 188 "mac/desktop_configuration.h", | 191 "mac/desktop_configuration.h", |
| 189 "mac/desktop_configuration.mm", | 192 "mac/desktop_configuration.mm", |
| 190 "mac/desktop_configuration_monitor.cc", | 193 "mac/desktop_configuration_monitor.cc", |
| 191 "mac/desktop_configuration_monitor.h", | 194 "mac/desktop_configuration_monitor.h", |
| 192 "mac/full_screen_chrome_window_detector.cc", | 195 "mac/full_screen_chrome_window_detector.cc", |
| 193 "mac/full_screen_chrome_window_detector.h", | 196 "mac/full_screen_chrome_window_detector.h", |
| 194 "mac/scoped_pixel_buffer_object.cc", | 197 "mac/scoped_pixel_buffer_object.cc", |
| 195 "mac/scoped_pixel_buffer_object.h", | 198 "mac/scoped_pixel_buffer_object.h", |
| 196 "mac/window_list_utils.cc", | 199 "mac/window_list_utils.cc", |
| 197 "mac/window_list_utils.h", | 200 "mac/window_list_utils.h", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 sources = [ | 302 sources = [ |
| 300 "differ_vector_sse2.cc", | 303 "differ_vector_sse2.cc", |
| 301 "differ_vector_sse2.h", | 304 "differ_vector_sse2.h", |
| 302 ] | 305 ] |
| 303 | 306 |
| 304 if (is_posix) { | 307 if (is_posix) { |
| 305 cflags = [ "-msse2" ] | 308 cflags = [ "-msse2" ] |
| 306 } | 309 } |
| 307 } | 310 } |
| 308 } | 311 } |
| OLD | NEW |