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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//mojo/go/rules.gni")
6
7 if (defined(go_build_tool) && go_build_tool != "") {
8 go_mojo_application("principal_service") {
9 sources = [
10 "principal_service.go",
11 ]
12 deps = [
13 "//mojo/services/vanadium/security/public/interfaces",
14 ]
15 }
16 } else {
17 import("//mojo/public/mojo_application.gni")
18
19 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
20 sources = [
21 "principal_service.cc",
22 ]
23 deps = [
24 "//base",
25 "//mojo/common",
26 "//mojo/public/cpp/application:standalone",
27 "//mojo/public/cpp/bindings",
28 "//mojo/services/vanadium/security/public/interfaces",
29 ]
30 }
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698