| 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("../../build/webrtc.gni") | 10 import("../../build/webrtc.gni") |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "screen_drawer_win.cc", | 59 "screen_drawer_win.cc", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 source_set("desktop_capture_mock") { | 63 source_set("desktop_capture_mock") { |
| 64 testonly = true | 64 testonly = true |
| 65 | 65 |
| 66 public_deps = [ | 66 public_deps = [ |
| 67 ":desktop_capture", | 67 ":desktop_capture", |
| 68 ":rgba_color", | 68 ":rgba_color", |
| 69 "//testing/gmock", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 sources = [ | 72 sources = [ |
| 72 "desktop_frame_generator.cc", | 73 "desktop_frame_generator.cc", |
| 73 "desktop_frame_generator.h", | 74 "desktop_frame_generator.h", |
| 74 "fake_desktop_capturer.cc", | 75 "fake_desktop_capturer.cc", |
| 75 "fake_desktop_capturer.h", | 76 "fake_desktop_capturer.h", |
| 77 "mock_desktop_capturer_callback.cc", |
| 76 "mock_desktop_capturer_callback.h", | 78 "mock_desktop_capturer_callback.h", |
| 77 "screen_capturer_mock_objects.h", | 79 "screen_capturer_mock_objects.h", |
| 78 ] | 80 ] |
| 79 } | 81 } |
| 80 } | 82 } |
| 81 | 83 |
| 82 rtc_static_library("desktop_capture") { | 84 rtc_static_library("desktop_capture") { |
| 83 sources = [ | 85 sources = [ |
| 84 "cropped_desktop_frame.cc", | 86 "cropped_desktop_frame.cc", |
| 85 "cropped_desktop_frame.h", | 87 "cropped_desktop_frame.h", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 sources = [ | 219 sources = [ |
| 218 "differ_vector_sse2.cc", | 220 "differ_vector_sse2.cc", |
| 219 "differ_vector_sse2.h", | 221 "differ_vector_sse2.h", |
| 220 ] | 222 ] |
| 221 | 223 |
| 222 if (is_posix) { | 224 if (is_posix) { |
| 223 cflags = [ "-msse2" ] | 225 cflags = [ "-msse2" ] |
| 224 } | 226 } |
| 225 } | 227 } |
| 226 } | 228 } |
| OLD | NEW |