| 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("//mojo/public/tools/bindings/mojom.gni") |
| 6 |
| 5 if (is_android) { | 7 if (is_android) { |
| 6 import("//services/android/rules.gni") | 8 import("//services/android/rules.gni") |
| 7 | 9 |
| 8 mojo_android_java_application("authentication") { | 10 mojo_android_java_application("authentication") { |
| 9 sources = [ | 11 sources = [ |
| 10 "src/org/chromium/mojo/authentication/AuthenticationApp.java", | 12 "src/org/chromium/mojo/authentication/AuthenticationApp.java", |
| 11 "src/org/chromium/mojo/authentication/AuthenticationServiceImpl.java", | 13 "src/org/chromium/mojo/authentication/AuthenticationServiceImpl.java", |
| 12 ] | 14 ] |
| 13 | 15 |
| 14 mojo_main = "org.chromium.mojo.authentication.AuthenticationApp" | 16 mojo_main = "org.chromium.mojo.authentication.AuthenticationApp" |
| 15 | 17 |
| 16 deps = [ | 18 deps = [ |
| 19 ":interfaces_java", |
| 17 "//mojo/public/interfaces/application:application_java", | 20 "//mojo/public/interfaces/application:application_java", |
| 18 "//mojo/public/java:application", | 21 "//mojo/public/java:application", |
| 19 "//mojo/services/authentication/public/interfaces:interfaces_java", | 22 "//mojo/services/authentication/public/interfaces:interfaces_java", |
| 20 "//services/android:bindings_java", | 23 "//services/android:bindings_java", |
| 21 "//third_party/android_tools:google_play_services_default_java", | 24 "//third_party/android_tools:google_play_services_default_java", |
| 22 ] | 25 ] |
| 23 } | 26 } |
| 27 |
| 28 mojom("interfaces") { |
| 29 sources = [ |
| 30 "authentication_impl_db.mojom", |
| 31 ] |
| 32 } |
| 24 } | 33 } |
| OLD | NEW |