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

Unified Diff: media/base/BUILD.gn

Issue 914363002: Add the "is_ensemble" build variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« media/BUILD.gn ('K') | « media/BUILD.gn ('k') | media/media_options.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/BUILD.gn
diff --git a/media/base/BUILD.gn b/media/base/BUILD.gn
index fd1bfe0263cfc94e608cf2ae831bb415fecf1c99..e43653a2c2becfeab65a31629117a06ccd743da3 100644
--- a/media/base/BUILD.gn
+++ b/media/base/BUILD.gn
@@ -217,7 +217,7 @@ source_set("base") {
sources += [ "media_posix.cc" ]
}
- if (is_linux && use_x11) {
+ if (is_linux && use_x11 && !is_ensemble) {
configs += [
"//build/config/linux:x11",
"//build/config/linux:xext",
@@ -254,6 +254,10 @@ source_set("base") {
"keyboard_event_counter.h",
]
}
+
+ if (is_ensemble) {
+ deps -= [ "//skia" ]
+ }
}
# Minimal media component for media/cast on iOS.
« media/BUILD.gn ('K') | « media/BUILD.gn ('k') | media/media_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698