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

Unified Diff: media/base/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 | « media/BUILD.gn ('k') | media/base/video_frame.h » ('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 d642f3f6fc8227a13e03f0a1b31785c9f7f03d61..5ab445de3d165fa0591c7e6e50712130194bc804 100644
--- a/media/base/BUILD.gn
+++ b/media/base/BUILD.gn
@@ -225,6 +225,20 @@ source_set("base") {
}
}
+# Minimal media component for media/cast on iOS.
+config("base_for_cast_ios_dependent_config") {
+ defines = [ "MEDIA_FOR_CAST_IOS" ]
+}
+
+source_set("base_for_cast_ios") {
+ sources = [
+ "video_frame.cc",
+ "video_frame.h",
+ ]
+ configs += [ "//media:media_config" ]
+ all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ]
+}
+
source_set("test_support") {
testonly = true
sources = [
« no previous file with comments | « media/BUILD.gn ('k') | media/base/video_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698