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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "differ_block_unittest.cc", | 81 "differ_block_unittest.cc", |
82 "fallback_desktop_capturer_wrapper_unittest.cc", | 82 "fallback_desktop_capturer_wrapper_unittest.cc", |
83 "mouse_cursor_monitor_unittest.cc", | 83 "mouse_cursor_monitor_unittest.cc", |
84 "rgba_color_unittest.cc", | 84 "rgba_color_unittest.cc", |
85 "test_utils.cc", | 85 "test_utils.cc", |
86 "test_utils.h", | 86 "test_utils.h", |
87 "test_utils_unittest.cc", | 87 "test_utils_unittest.cc", |
88 "win/cursor_unittest.cc", | 88 "win/cursor_unittest.cc", |
89 "win/cursor_unittest_resources.h", | 89 "win/cursor_unittest_resources.h", |
90 "win/cursor_unittest_resources.rc", | 90 "win/cursor_unittest_resources.rc", |
| 91 "win/screen_capture_utils_unittest.cc", |
91 ] | 92 ] |
92 deps = [ | 93 deps = [ |
93 ":desktop_capture", | 94 ":desktop_capture", |
94 ":desktop_capture_mock", | 95 ":desktop_capture_mock", |
95 ":primitives", | 96 ":primitives", |
96 "../..:webrtc_common", | 97 "../..:webrtc_common", |
97 "../../base:rtc_base_approved", | 98 "../../base:rtc_base_approved", |
98 "../../system_wrappers", | 99 "../../system_wrappers", |
99 "../../test:test_support", | 100 "../../test:test_support", |
100 "//testing/gmock", | 101 "//testing/gmock", |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 sources = [ | 309 sources = [ |
309 "differ_vector_sse2.cc", | 310 "differ_vector_sse2.cc", |
310 "differ_vector_sse2.h", | 311 "differ_vector_sse2.h", |
311 ] | 312 ] |
312 | 313 |
313 if (is_posix) { | 314 if (is_posix) { |
314 cflags = [ "-msse2" ] | 315 cflags = [ "-msse2" ] |
315 } | 316 } |
316 } | 317 } |
317 } | 318 } |
OLD | NEW |