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

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: indentation 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.
ashankar 2015/08/19 05:50:38 Would it make sense to have a README file in this
gautham 2015/08/19 17:45:50 Done.
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
18 deps = [
19 ":bindings",
20 "//base",
21 "//mojo/public/cpp/application:standalone",
22 "//mojo/public/cpp/bindings",
23 "//mojo/public/cpp/utility",
24 ]
25
26 sources = [
27 "echo_client.cc",
28 ]
29 }
30
31 mojo_native_application("server") {
32 output_name = "echo_server"
33 17
34 deps = [ 18 deps = [
35 ":bindings", 19 ":bindings",
36 "//mojo/public/cpp/application:standalone", 20 "//mojo/public/cpp/application:standalone",
37 "//mojo/public/cpp/bindings", 21 "//mojo/public/cpp/bindings",
38 "//mojo/public/cpp/utility", 22 "//mojo/public/cpp/utility",
39 "//mojo/common", 23 "//mojo/services/vanadium/security/public/interfaces",
40 ] 24 ]
41 25
42 sources = [ 26 sources = [
43 "echo_server.cc", 27 "customer.cc",
28 ]
29 }
30
31 mojo_native_application("bank") {
32 output_name = "bank"
33
34 deps = [
35 ":bindings",
36 "//mojo/common",
37 "//mojo/public/cpp/application:standalone",
38 "//mojo/public/cpp/bindings",
39 "//mojo/public/cpp/utility",
40 "//mojo/services/vanadium/security/public/interfaces",
41 ]
42
43 sources = [
44 "bank.cc",
44 ] 45 ]
45 } 46 }
46 47
47 mojom("bindings") { 48 mojom("bindings") {
48 sources = [ 49 sources = [
49 "echo.mojom", 50 "bank.mojom",
50 ] 51 ]
51 } 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