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

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: Check for use_x11 only on linux. 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..441b0b392f9ef00171d896ff08dc97bd6162101a 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 ((!is_linux || use_x11) && rtc_desktop_capture_supported) {
kjellander_webrtc 2017/02/09 13:59:50 This is somewhat hard to read. What about to chang
Sergey Ulanov 2017/02/09 18:52:22 There is an issue with Chrome OS and Android. Ther
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