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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 # gets additional generated targets which would require many lines here to | 69 # gets additional generated targets which would require many lines here to |
70 # cover (which would be confusing to read and hard to maintain). | 70 # cover (which would be confusing to read and hard to maintain). |
71 if (!is_android && !is_ios) { | 71 if (!is_android && !is_ios) { |
72 visibility = [ "//webrtc/modules:modules_unittests" ] | 72 visibility = [ "//webrtc/modules:modules_unittests" ] |
73 } | 73 } |
74 sources = [ | 74 sources = [ |
75 "blank_detector_desktop_capturer_wrapper_unittest.cc", | 75 "blank_detector_desktop_capturer_wrapper_unittest.cc", |
76 "desktop_and_cursor_composer_unittest.cc", | 76 "desktop_and_cursor_composer_unittest.cc", |
77 "desktop_capturer_differ_wrapper_unittest.cc", | 77 "desktop_capturer_differ_wrapper_unittest.cc", |
78 "desktop_frame_rotation_unittest.cc", | 78 "desktop_frame_rotation_unittest.cc", |
| 79 "desktop_geometry_unittest.cc", |
79 "desktop_region_unittest.cc", | 80 "desktop_region_unittest.cc", |
80 "differ_block_unittest.cc", | 81 "differ_block_unittest.cc", |
81 "fallback_desktop_capturer_wrapper_unittest.cc", | 82 "fallback_desktop_capturer_wrapper_unittest.cc", |
82 "mouse_cursor_monitor_unittest.cc", | 83 "mouse_cursor_monitor_unittest.cc", |
83 "rgba_color_unittest.cc", | 84 "rgba_color_unittest.cc", |
84 "test_utils.cc", | 85 "test_utils.cc", |
85 "test_utils.h", | 86 "test_utils.h", |
86 "test_utils_unittest.cc", | 87 "test_utils_unittest.cc", |
87 "win/cursor_unittest.cc", | 88 "win/cursor_unittest.cc", |
88 "win/cursor_unittest_resources.h", | 89 "win/cursor_unittest_resources.h", |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 sources = [ | 308 sources = [ |
308 "differ_vector_sse2.cc", | 309 "differ_vector_sse2.cc", |
309 "differ_vector_sse2.h", | 310 "differ_vector_sse2.h", |
310 ] | 311 ] |
311 | 312 |
312 if (is_posix) { | 313 if (is_posix) { |
313 cflags = [ "-msse2" ] | 314 cflags = [ "-msse2" ] |
314 } | 315 } |
315 } | 316 } |
316 } | 317 } |
OLD | NEW |