| 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 11 matching lines...) Expand all Loading... |
| 22 "desktop_region.h", | 22 "desktop_region.h", |
| 23 "shared_desktop_frame.cc", | 23 "shared_desktop_frame.cc", |
| 24 "shared_desktop_frame.h", | 24 "shared_desktop_frame.h", |
| 25 "shared_memory.cc", | 25 "shared_memory.cc", |
| 26 "shared_memory.h", | 26 "shared_memory.h", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 "../..:webrtc_common", | 30 "../..:webrtc_common", |
| 31 "../../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. | 31 "../../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. |
| 32 "../../media:rtc_media_base", | |
| 33 ] | 32 ] |
| 34 } | 33 } |
| 35 | 34 |
| 36 if (rtc_include_tests) { | 35 if (rtc_include_tests) { |
| 37 rtc_source_set("desktop_capture_modules_tests") { | 36 rtc_source_set("desktop_capture_modules_tests") { |
| 38 testonly = true | 37 testonly = true |
| 39 sources = [] | 38 sources = [] |
| 40 deps = [] | 39 deps = [] |
| 41 if (rtc_desktop_capture_supported) { | 40 if (rtc_desktop_capture_supported) { |
| 42 deps += [ | 41 deps += [ |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 sources = [ | 289 sources = [ |
| 291 "differ_vector_sse2.cc", | 290 "differ_vector_sse2.cc", |
| 292 "differ_vector_sse2.h", | 291 "differ_vector_sse2.h", |
| 293 ] | 292 ] |
| 294 | 293 |
| 295 if (is_posix) { | 294 if (is_posix) { |
| 296 cflags = [ "-msse2" ] | 295 cflags = [ "-msse2" ] |
| 297 } | 296 } |
| 298 } | 297 } |
| 299 } | 298 } |
| OLD | NEW |