| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 group("intents") { | 9 group("media") { |
| 10 testonly = true | 10 testonly = true |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 ":intents_lib", | 13 ":media_lib", |
| 14 ":interfaces", | 14 ":interfaces", |
| 15 ] | 15 ] |
| 16 } | 16 } |
| 17 | 17 |
| 18 android_library("intents_lib") { | 18 android_library("media_lib") { |
| 19 java_files = [ "src/org/domokit/intents/ActivityManagerImpl.java" ] | 19 java_files = [ |
| 20 "src/org/domokit/media/MediaPlayerImpl.java", |
| 21 "src/org/domokit/media/MediaServiceImpl.java", |
| 22 ] |
| 20 | 23 |
| 21 deps = [ | 24 deps = [ |
| 22 "//base:base_java", | 25 "//base:base_java", |
| 26 "//mojo/java", |
| 23 "//mojo/public/java:bindings", | 27 "//mojo/public/java:bindings", |
| 24 "//mojo/public/java:system", | 28 "//mojo/public/java:system", |
| 25 ":interfaces_java", | 29 ":interfaces_java", |
| 26 ] | 30 ] |
| 27 } | 31 } |
| 28 | 32 |
| 29 mojom("interfaces") { | 33 mojom("interfaces") { |
| 30 sources = [ | 34 sources = [ |
| 31 "intents.mojom", | 35 "media.mojom", |
| 32 ] | 36 ] |
| 33 } | 37 } |
| OLD | NEW |