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

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

Issue 780733002: Simplify the thunk targets since we don't support apps as components (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 | « examples/http_handler/BUILD.gn ('k') | examples/keyboard/BUILD.gn » ('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("indirect_service") { 8 group("indirect_service") {
9 deps = [ 9 deps = [
10 ":indirect_service_demo", 10 ":indirect_service_demo",
11 ":indirect_integer_service", 11 ":indirect_integer_service",
12 ":integer_service", 12 ":integer_service",
13 ] 13 ]
14 } 14 }
15 15
16 mojo_native_application("indirect_service_demo") { 16 mojo_native_application("indirect_service_demo") {
17 output_name = "indirect_service_demo" 17 output_name = "indirect_service_demo"
18 18
19 sources = [ "indirect_service_demo.cc" ] 19 sources = [ "indirect_service_demo.cc" ]
20 20
21 deps = [ 21 deps = [
22 ":bindings", 22 ":bindings",
23 "//base", 23 "//base",
24 "//mojo/application", 24 "//mojo/application",
25 "//mojo/common", 25 "//mojo/common",
26 "//mojo/environment:chromium", 26 "//mojo/environment:chromium",
27 "//mojo/public/c/system:for_shared_library",
28 "//mojo/public/cpp/bindings", 27 "//mojo/public/cpp/bindings",
29 "//mojo/public/cpp/utility", 28 "//mojo/public/cpp/utility",
30 ] 29 ]
31 } 30 }
32 31
33 mojo_native_application("integer_service") { 32 mojo_native_application("integer_service") {
34 output_name = "integer_service" 33 output_name = "integer_service"
35 34
36 sources = [ "integer_service.cc" ] 35 sources = [ "integer_service.cc" ]
37 36
38 deps = [ 37 deps = [
39 ":bindings", 38 ":bindings",
40 "//mojo/public/c/system:for_shared_library",
41 "//mojo/public/cpp/application:standalone", 39 "//mojo/public/cpp/application:standalone",
42 "//mojo/public/cpp/bindings", 40 "//mojo/public/cpp/bindings",
43 "//mojo/public/cpp/utility", 41 "//mojo/public/cpp/utility",
44 ] 42 ]
45 } 43 }
46 44
47 mojo_native_application("indirect_integer_service") { 45 mojo_native_application("indirect_integer_service") {
48 output_name = "indirect_integer_service" 46 output_name = "indirect_integer_service"
49 47
50 sources = [ "indirect_integer_service.cc" ] 48 sources = [ "indirect_integer_service.cc" ]
51 49
52 deps = [ 50 deps = [
53 ":bindings", 51 ":bindings",
54 "//mojo/public/c/system:for_shared_library",
55 "//mojo/public/cpp/application:standalone", 52 "//mojo/public/cpp/application:standalone",
56 "//mojo/public/cpp/bindings", 53 "//mojo/public/cpp/bindings",
57 "//mojo/public/cpp/utility", 54 "//mojo/public/cpp/utility",
58 ] 55 ]
59 } 56 }
60 57
61 mojom("bindings") { 58 mojom("bindings") {
62 sources = [ "indirect_service_demo.mojom" ] 59 sources = [ "indirect_service_demo.mojom" ]
63 } 60 }
OLDNEW
« no previous file with comments | « examples/http_handler/BUILD.gn ('k') | examples/keyboard/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698