Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(394)

Unified Diff: webrtc/modules/desktop_capture/BUILD.gn

Issue 2684683003: Check for use_x11 before runnig desktop_capture_modules_tests on linux. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/desktop_capture/BUILD.gn
diff --git a/webrtc/modules/desktop_capture/BUILD.gn b/webrtc/modules/desktop_capture/BUILD.gn
index bbf9ac57bbb6a7516f73ffae543cf468d54e59a0..de5163788c08d96ef64e39ebb540018d3e74acd7 100644
--- a/webrtc/modules/desktop_capture/BUILD.gn
+++ b/webrtc/modules/desktop_capture/BUILD.gn
@@ -37,8 +37,9 @@ if (rtc_include_tests) {
testonly = true
sources = []
deps = []
- if (rtc_desktop_capture_supported) {
+ if (use_x11 && rtc_desktop_capture_supported) {
kjellander_webrtc 2017/02/09 07:11:35 use_x11 is only ever true on Linux (https://cs.chr
deps += [
+ ":desktop_capture",
":desktop_capture_mock",
":primitives",
":screen_drawer",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698