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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: services/authentication/BUILD.gn
diff --git a/services/authentication/BUILD.gn b/services/authentication/BUILD.gn
index 72b61bcfc54a9cbd8d7340300da40d3094583589..88c72a6ebfce8699ecde9d48faf171c2615a285f 100644
--- a/services/authentication/BUILD.gn
+++ b/services/authentication/BUILD.gn
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//mojo/public/tools/bindings/mojom.gni")
+
if (is_android) {
import("//services/android/rules.gni")
@@ -14,6 +16,7 @@ if (is_android) {
mojo_main = "org.chromium.mojo.authentication.AuthenticationApp"
deps = [
+ ":interfaces_java",
"//mojo/public/interfaces/application:application_java",
"//mojo/public/java:application",
"//mojo/services/authentication/public/interfaces:interfaces_java",
@@ -21,4 +24,10 @@ if (is_android) {
"//third_party/android_tools:google_play_services_default_java",
]
}
+
+ mojom("interfaces") {
+ sources = [
+ "authentication_impl_db.mojom",
+ ]
+ }
}

Powered by Google App Engine
This is Rietveld 408576698