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

Unified Diff: media/mojo/services/BUILD.gn

Issue 1529063004: Pass MojoMediaClient instance to MojoMediaApplication constructor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added bug number Created 5 years 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/mojo/services/default_mojo_media_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/services/BUILD.gn
diff --git a/media/mojo/services/BUILD.gn b/media/mojo/services/BUILD.gn
index cb9bcbf4011f475847130c2fc110a0206a95c983..eda7fb357290040b6ee588bcc4dd0074a6e54393 100644
--- a/media/mojo/services/BUILD.gn
+++ b/media/mojo/services/BUILD.gn
@@ -81,14 +81,14 @@ source_set("proxy") {
}
source_set("media_client") {
+ sources = [
+ "mojo_media_client.cc",
+ "mojo_media_client.h",
+ ]
if (is_android) {
- sources = [
- "android_mojo_media_client.cc",
- ]
+ sources += [ "android_mojo_media_client.cc" ]
} else {
- sources = [
- "default_mojo_media_client.cc",
- ]
+ sources += [ "default_mojo_media_client.cc" ]
}
public_configs = [ ":enable_mojo_media_config" ]
@@ -158,8 +158,6 @@ source_set("application") {
sources = [
"mojo_media_application.cc",
"mojo_media_application.h",
- "mojo_media_client.cc",
- "mojo_media_client.h",
"service_factory_impl.cc",
"service_factory_impl.h",
]
« no previous file with comments | « no previous file | media/mojo/services/default_mojo_media_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698