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

Unified Diff: services/vanadium/security/BUILD.gn

Issue 1261403003: Initial skeletal implementation of the PrincipalService. Also, use the Login()/GetUserBlessing() (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: minor logging fixes Created 5 years, 4 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/vanadium/security/BUILD.gn
diff --git a/services/vanadium/security/BUILD.gn b/services/vanadium/security/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..5ab34476949471292868f9432b2db35e21ab7fc6
--- /dev/null
+++ b/services/vanadium/security/BUILD.gn
@@ -0,0 +1,31 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//mojo/go/rules.gni")
+
+if (defined(go_build_tool) && go_build_tool != "") {
+ go_mojo_application("principal_service") {
+ sources = [
+ "principal_service.go",
+ ]
+ deps = [
+ "//mojo/services/vanadium/security/public/interfaces",
+ ]
+ }
+} else {
+ import("//mojo/public/mojo_application.gni")
+
+ mojo_native_application("principal_service") {
jamesr 2015/08/17 21:38:22 instead of having two ways to build the same .mojo
gautham 2015/08/18 01:54:22 I removed the C++ version and deleted principal_se
+ sources = [
+ "principal_service.cc",
+ ]
+ deps = [
+ "//base",
+ "//mojo/common",
+ "//mojo/public/cpp/application:standalone",
+ "//mojo/public/cpp/bindings",
+ "//mojo/services/vanadium/security/public/interfaces",
+ ]
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698