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

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

Issue 1397563003: Remove wm_flow, browser, nesting_app examples (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
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/mojo_application.gni")
7 import("//mojo/public/tools/bindings/mojom.gni")
8
9 group("wm_flow") {
10 deps = [
11 ":app",
12 ":embedded",
13 ":wm",
14 ]
15 }
16
17 mojo_native_application("wm") {
18 output_name = "wm_flow_wm"
19
20 sources = [
21 "wm/frame_controller.cc",
22 "wm/frame_controller.h",
23 "wm/wm.cc",
24 ]
25
26 deps = [
27 ":wm_bindings",
28 "//base",
29 "//mojo/application",
30 "//mojo/converters/geometry",
31 "//mojo/public/interfaces/application",
32 "//mojo/services/input_events/interfaces",
33 "//mojo/services/view_manager/cpp",
34 "//services/window_manager:lib",
35 "//skia",
36 "//ui/gfx/geometry",
37 "//url",
38 ]
39 }
40
41 mojo_native_application("app") {
42 output_name = "wm_flow_app"
43
44 sources = [
45 "app/app.cc",
46 ]
47
48 deps = [
49 ":embedder_bindings",
50 ":embeddee_bindings",
51 "//base",
52 "//examples/bitmap_uploader",
53 "//mojo/application",
54 "//mojo/common",
55 "//mojo/public/interfaces/application:application",
56 "//mojo/services/view_manager/cpp",
57 "//services/window_manager:lib",
58 "//skia",
59 "//url",
60 ]
61 }
62
63 mojo_native_application("embedded") {
64 output_name = "wm_flow_embedded"
65
66 sources = [
67 "embedded/embedded.cc",
68 ]
69
70 deps = [
71 ":embeddee_bindings",
72 ":embedder_bindings",
73 "//base",
74 "//examples/bitmap_uploader",
75 "//mojo/application",
76 "//mojo/services/view_manager/cpp",
77 "//services/window_manager:lib",
78 "//skia",
79 "//url",
80 ]
81 }
82
83 mojom("wm_bindings") {
84 sources = [
85 "wm/window_frame_host.mojom",
86 ]
87 }
88
89 mojom("embedder_bindings") {
90 sources = [
91 "app/embedder.mojom",
92 ]
93 }
94
95 mojom("embeddee_bindings") {
96 sources = [
97 "embedded/embeddee.mojom",
98 ]
99 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698