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

Side by Side Diff: examples/bank_app/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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/mojo_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 group("echo") { 8 group("bank_app") {
9 deps = [ 9 deps = [
10 ":client", 10 ":customer",
11 ":server", 11 ":bank",
12 ] 12 ]
13 } 13 }
14 14
15 mojo_native_application("client") { 15 mojo_native_application("customer") {
16 output_name = "echo_client" 16 output_name = "customer"
17 17
18 deps = [ 18 deps = [
19 ":bindings", 19 ":bindings",
20 "//mojo/public/cpp/application:standalone", 20 "//mojo/public/cpp/application:standalone",
21 "//mojo/public/cpp/bindings", 21 "//mojo/public/cpp/bindings",
22 "//mojo/public/cpp/utility", 22 "//mojo/public/cpp/utility",
23 "//mojo/services/vanadium/security/public/interfaces",
23 ] 24 ]
24 25
25 sources = [ 26 sources = [
26 "echo_client.cc", 27 "customer.cc",
27 ] 28 ]
28 } 29 }
29 30
30 mojo_native_application("server") { 31 mojo_native_application("bank") {
31 output_name = "echo_server" 32 output_name = "bank"
32 33
33 deps = [ 34 deps = [
34 ":bindings", 35 ":bindings",
36 "//mojo/common",
35 "//mojo/public/cpp/application:standalone", 37 "//mojo/public/cpp/application:standalone",
36 "//mojo/public/cpp/bindings", 38 "//mojo/public/cpp/bindings",
37 "//mojo/public/cpp/utility", 39 "//mojo/public/cpp/utility",
38 "//mojo/common", 40 "//mojo/services/vanadium/security/public/interfaces",
39 ] 41 ]
40 42
41 sources = [ 43 sources = [
42 "echo_server.cc", 44 "bank.cc",
43 ] 45 ]
44 } 46 }
45 47
46 mojom("bindings") { 48 mojom("bindings") {
47 sources = [ 49 sources = [
48 "echo.mojom", 50 "bank.mojom",
49 ] 51 ]
50 } 52 }
OLDNEW
« no previous file with comments | « examples/BUILD.gn ('k') | examples/bank_app/bank.cc » ('j') | examples/bank_app/bank.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698