summaryrefslogtreecommitdiffstats
path: root/media/mojo/services/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'media/mojo/services/BUILD.gn')
-rw-r--r--media/mojo/services/BUILD.gn22
1 files changed, 8 insertions, 14 deletions
diff --git a/media/mojo/services/BUILD.gn b/media/mojo/services/BUILD.gn
index 0f68858..39384c9 100644
--- a/media/mojo/services/BUILD.gn
+++ b/media/mojo/services/BUILD.gn
@@ -150,30 +150,24 @@ source_set("application") {
"service_factory_impl.h",
]
- public_configs = [ ":enable_mojo_media_config" ]
-
- deps = [
- ":cdm_service",
- ":renderer_service",
- "//mojo/shell/public/cpp",
- ]
-}
-
-source_set("default_application") {
if (is_android) {
- sources = [
+ sources += [
"android_mojo_media_client.cc",
+ "android_mojo_media_client.h",
]
} else {
- sources = [
+ sources += [
"default_mojo_media_client.cc",
+ "default_mojo_media_client.h",
]
}
public_configs = [ ":enable_mojo_media_config" ]
deps = [
- ":application",
+ ":cdm_service",
+ ":renderer_service",
+ "//mojo/shell/public/cpp",
]
}
@@ -203,7 +197,7 @@ mojo_native_application("media") {
]
deps = [
- ":default_application",
+ ":application",
"//mojo/logging",
"//mojo/public/c/system:for_shared_library",
]