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

Unified Diff: media/BUILD.gn

Issue 581803003: Define a new media_cast component for iOS cast builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cast_receiver and cast_sender dependency list; change how media_for_cast_ios builds media:share… Created 6 years, 3 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 | media/base/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/BUILD.gn
diff --git a/media/BUILD.gn b/media/BUILD.gn
index 287b23055330afda5931a97e678a22a4ad3c1c7d..20e16fc576f34d2432ad745a16b5dd94120060c8 100644
--- a/media/BUILD.gn
+++ b/media/BUILD.gn
@@ -441,6 +441,24 @@ component("media") {
]
}
+# Minimal media component for media/cast on iOS.
+if (is_ios) {
+ component("media_for_cast_ios") {
+ configs += [ ":media_config" ]
+ all_dependent_configs = [ ":media_dependent_config" ]
+ include_dirs = [ "." ]
+ libs = [ "CoreVideo.framework" ]
+
+ deps = [
+ ":shared_memory_support",
+ "//base",
+ "//media/base:base_for_cast_ios",
+ "//media/base/mac",
+ "//ui/gfx/geometry",
+ ]
+ }
+}
+
test("media_unittests") {
sources = [
"cdm/aes_decryptor_unittest.cc",
« no previous file with comments | « no previous file | media/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698