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

Unified Diff: chromecast/common/media/BUILD.gn

Issue 2712983004: Simplify/Cleanup MediaClient (Closed)
Patch Set: Created 3 years, 9 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
Index: chromecast/common/media/BUILD.gn
diff --git a/chromecast/common/media/BUILD.gn b/chromecast/common/media/BUILD.gn
index fdac2144d6e2d8252bcd44123d2d43491f3ae806..cc884f6757a1633a78829a9fe0e006a3872d4ac9 100644
--- a/chromecast/common/media/BUILD.gn
+++ b/chromecast/common/media/BUILD.gn
@@ -6,26 +6,15 @@ import("//chromecast/chromecast.gni")
import("//mojo/public/tools/bindings/mojom.gni")
source_set("media") {
- sources = [
- "cast_media_client.cc",
- "cast_media_client.h",
- ]
-
- deps = [
- "//base",
- "//chromecast/media",
- "//chromecast/media/cdm",
- "//chromecast/public:public",
- "//media",
- ]
-
if (is_android) {
- sources += [
+ sources = [
"cast_media_client_android.cc",
"cast_media_client_android.h",
]
- deps += [
+ deps = [
+ "//base",
"//chromecast/media",
+ "//chromecast/media/cdm",
"//components/cdm/common",
"//media/base/android",
]

Powered by Google App Engine
This is Rietveld 408576698