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

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

Issue 1211913005: Add a sky media service to make it possible to play a sound. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Ready for review Created 5 years, 6 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: sky/services/media/BUILD.gn
diff --git a/sky/services/intents/BUILD.gn b/sky/services/media/BUILD.gn
similarity index 70%
copy from sky/services/intents/BUILD.gn
copy to sky/services/media/BUILD.gn
index 50470973cef2ad45a4a5a00c84b30acaaf54af32..f6b701342a28ff83c7661a2d6bf16ed01713e62a 100644
--- a/sky/services/intents/BUILD.gn
+++ b/sky/services/media/BUILD.gn
@@ -6,20 +6,24 @@ import("//build/config/android/config.gni")
import("//build/config/android/rules.gni")
import("//mojo/public/tools/bindings/mojom.gni")
-group("intents") {
+group("media") {
testonly = true
deps = [
- ":intents_lib",
+ ":media_lib",
":interfaces",
]
}
-android_library("intents_lib") {
- java_files = [ "src/org/domokit/intents/ActivityManagerImpl.java" ]
+android_library("media_lib") {
+ java_files = [
+ "src/org/domokit/media/MediaPlayerImpl.java",
+ "src/org/domokit/media/MediaServiceImpl.java",
+ ]
deps = [
"//base:base_java",
+ "//mojo/java",
"//mojo/public/java:bindings",
"//mojo/public/java:system",
":interfaces_java",
@@ -28,6 +32,6 @@ android_library("intents_lib") {
mojom("interfaces") {
sources = [
- "intents.mojom",
+ "media.mojom",
]
}

Powered by Google App Engine
This is Rietveld 408576698