Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 group("go") { | |
| 8 assert(go_build_tool != "") | |
| 9 deps = [ | |
| 10 ":go_principal_service", | |
| 11 ] | |
| 12 } | |
| 13 | |
| 14 go_mojo_application("go_principal_service") { | |
| 15 sources = [ | |
| 16 "principal_service.go", | |
| 17 ] | |
| 18 deps = [ | |
| 19 "//mojo/services/vanadium/security/public/interfaces", | |
| 20 ] | |
| 21 } | |
| OLD | NEW |