blob: 41563ecc3200b9d4ecdffadeeaed38f9d7fe76de [file] [log] [blame]
Gautham Thambidorai658bb422015-08-19 12:40:00 -07001# 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
5import("//mojo/go/rules.gni")
6
7go_mojo_application("principal_service") {
8 sources = [
Ankur9c1db642015-11-04 17:15:15 -08009 "conventions.go",
10 "principal.go",
Gautham Thambidorai658bb422015-08-19 12:40:00 -070011 "principal_service.go",
Ankur0378d792015-08-31 11:30:09 -070012 "public_key.go",
13 "wire_blessings.go",
Gautham Thambidorai658bb422015-08-19 12:40:00 -070014 ]
15 deps = [
Viet-Trung Luu2e11a3f2015-10-13 13:20:30 -070016 "//mojo/public/interfaces/network",
17 "//mojo/services/authentication/interfaces",
18 "//mojo/services/network/interfaces",
Viet-Trung Luu15a59a82015-10-10 01:11:00 -070019 "//mojo/services/vanadium/security/interfaces",
Gautham Thambidorai658bb422015-08-19 12:40:00 -070020 ]
21}