| 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") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//services/android/rules.gni") | 8 import("//mojo/android/rules.gni") |
| 9 | 9 |
| 10 mojo_android_java_application("authentication") { | 10 mojo_android_java_application("authentication") { |
| 11 sources = [ | 11 sources = [ |
| 12 "src/org/chromium/mojo/authentication/AuthenticationApp.java", | 12 "src/org/chromium/mojo/authentication/AuthenticationApp.java", |
| 13 "src/org/chromium/mojo/authentication/AuthenticationServiceImpl.java", | 13 "src/org/chromium/mojo/authentication/AuthenticationServiceImpl.java", |
| 14 "src/org/chromium/mojo/authentication/NetworkServiceProxyFactory.java", | 14 "src/org/chromium/mojo/authentication/NetworkServiceProxyFactory.java", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 mojo_main = "org.chromium.mojo.authentication.AuthenticationApp" | 17 mojo_main = "org.chromium.mojo.authentication.AuthenticationApp" |
| 18 | 18 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 44 deps = [ | 44 deps = [ |
| 45 "//mojo/common", | 45 "//mojo/common", |
| 46 "//mojo/public/cpp/application", | 46 "//mojo/public/cpp/application", |
| 47 "//mojo/public/cpp/application:standalone", | 47 "//mojo/public/cpp/application:standalone", |
| 48 "//mojo/public/cpp/bindings", | 48 "//mojo/public/cpp/bindings", |
| 49 "//mojo/public/cpp/system", | 49 "//mojo/public/cpp/system", |
| 50 "//mojo/services/authentication/public/interfaces", | 50 "//mojo/services/authentication/public/interfaces", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 } | 53 } |
| OLD | NEW |