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

Side by Side Diff: examples/bank_app/BUILD.gn

Issue 1391243003: Move //mojo/services/X/public/... to //mojo/services/X/... (part 4). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_3-x-no_public_2-x-no_public_1
Patch Set: copyright header Created 5 years, 2 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
« no previous file with comments | « apps/moterm/moterm_view.h ('k') | examples/bank_app/bank.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("bank_app") { 8 group("bank_app") {
9 deps = [ 9 deps = [
10 ":customer", 10 ":customer",
11 ":bank", 11 ":bank",
12 ] 12 ]
13 } 13 }
14 14
15 mojo_native_application("customer") { 15 mojo_native_application("customer") {
16 output_name = "customer" 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 "//mojo/services/vanadium/security/interfaces",
24 ] 24 ]
25 25
26 sources = [ 26 sources = [
27 "customer.cc", 27 "customer.cc",
28 ] 28 ]
29 } 29 }
30 30
31 mojo_native_application("bank") { 31 mojo_native_application("bank") {
32 output_name = "bank" 32 output_name = "bank"
33 33
34 deps = [ 34 deps = [
35 ":bindings", 35 ":bindings",
36 "//mojo/common", 36 "//mojo/common",
37 "//mojo/public/cpp/application:standalone", 37 "//mojo/public/cpp/application:standalone",
38 "//mojo/public/cpp/bindings", 38 "//mojo/public/cpp/bindings",
39 "//mojo/public/cpp/utility", 39 "//mojo/public/cpp/utility",
40 "//mojo/services/vanadium/security/public/interfaces", 40 "//mojo/services/vanadium/security/interfaces",
41 ] 41 ]
42 42
43 sources = [ 43 sources = [
44 "bank.cc", 44 "bank.cc",
45 ] 45 ]
46 } 46 }
47 47
48 mojom("bindings") { 48 mojom("bindings") {
49 sources = [ 49 sources = [
50 "bank.mojom", 50 "bank.mojom",
51 ] 51 ]
52 } 52 }
OLDNEW
« no previous file with comments | « apps/moterm/moterm_view.h ('k') | examples/bank_app/bank.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698