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

Side by Side Diff: services/authentication/BUILD.gn

Issue 1163483004: Make the authentication service remember selected usernames. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Follow 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 unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698