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

Side by Side Diff: mojo/examples/wm_flow/BUILD.gn

Issue 563953003: GN rules for everything in //mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « mojo/examples/window_manager/BUILD.gn ('k') | mojo/mojo.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/ui.gni")
6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//mojo/system.gni")
8
9 assert(use_aura)
10
11 group("wm_flow" ) {
12 deps = [
13 ":app",
14 ":embedded",
15 ":init",
16 ":wm_flow_wm",
17 ]
18 }
19
20 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_wm
21 shared_library("wm_flow_wm") {
22 output_name = "mojo_wm_flow_wm"
23
24 sources = [
25 "wm/wm.cc",
26 ]
27
28 deps = [
29 "//base",
30 "//mojo/application",
31 "//mojo/services/public/cpp/view_manager",
32 "//mojo/services/window_manager:lib",
33 ] + mojo_system_for_shared_library
34 }
35
36 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_init
37 shared_library("init") {
38 output_name = "mojo_wm_flow_init"
39
40 sources = [
41 "init/init.cc",
42 ]
43
44 deps = [
45 "//base",
46 "//mojo/application",
47 "//mojo/services/public/interfaces/view_manager",
48 ] + mojo_system_for_shared_library
49 }
50
51 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_app
52 shared_library("app") {
53 output_name = "mojo_wm_flow_app"
54
55 sources = [
56 "app/app.cc",
57 ]
58
59 deps = [
60 ":embedder_bindings",
61 ":embeddee_bindings",
62 "//base",
63 "//mojo/application",
64 "//mojo/services/public/cpp/view_manager",
65 "//mojo/services/window_manager:lib",
66 ] + mojo_system_for_shared_library
67 }
68
69 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embedded
70 shared_library("embedded") {
71 output_name = "mojo_wm_flow_embedded"
72
73 sources = [
74 "embedded/embedded.cc",
75 ]
76
77 deps = [
78 ":embedder_bindings",
79 ":embeddee_bindings",
80 "//base",
81 "//mojo/application",
82 "//mojo/services/public/cpp/view_manager",
83 "//mojo/services/window_manager:lib",
84 ] + mojo_system_for_shared_library
85 }
86
87 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embedder_bindings
88 mojom("embedder_bindings") {
89 sources = [
90 "app/embedder.mojom",
91 ]
92 }
93
94 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embeddee_bindings
95 mojom("embeddee_bindings") {
96 sources = [
97 "embedded/embeddee.mojom",
98 ]
99 }
OLDNEW
« no previous file with comments | « mojo/examples/window_manager/BUILD.gn ('k') | mojo/mojo.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698