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

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

Issue 642243005: Remove comments regarding deleted mojo_examlpes.gypi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 | « mojo/examples/window_manager/BUILD.gn ('k') | no next file » | 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 assert(use_aura) 8 assert(use_aura)
9 9
10 group("wm_flow") { 10 group("wm_flow") {
11 deps = [ 11 deps = [
12 ":app", 12 ":app",
13 ":embedded", 13 ":embedded",
14 ":init", 14 ":init",
15 ":wm", 15 ":wm",
16 ] 16 ]
17 } 17 }
18 18
19 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_wm
20 shared_library("wm") { 19 shared_library("wm") {
21 output_name = "mojo_wm_flow_wm" 20 output_name = "mojo_wm_flow_wm"
22 21
23 sources = [ 22 sources = [
24 "wm/wm.cc", 23 "wm/wm.cc",
25 "wm/frame_controller.cc", 24 "wm/frame_controller.cc",
26 "wm/frame_controller.h", 25 "wm/frame_controller.h",
27 ] 26 ]
28 27
29 deps = [ 28 deps = [
30 "//base", 29 "//base",
31 "//skia", 30 "//skia",
32 "//ui/aura", 31 "//ui/aura",
33 "//ui/views", 32 "//ui/views",
34 "//ui/wm:wm", 33 "//ui/wm:wm",
35 "//mojo/application", 34 "//mojo/application",
36 "//mojo/public/c/system:for_shared_library", 35 "//mojo/public/c/system:for_shared_library",
37 "//mojo/services/public/cpp/view_manager", 36 "//mojo/services/public/cpp/view_manager",
38 "//mojo/services/public/interfaces/input_events", 37 "//mojo/services/public/interfaces/input_events",
39 "//mojo/services/window_manager:lib", 38 "//mojo/services/window_manager:lib",
40 "//mojo/views:views", 39 "//mojo/views:views",
41 ] 40 ]
42 } 41 }
43 42
44 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_init
45 shared_library("init") { 43 shared_library("init") {
46 output_name = "mojo_wm_flow_init" 44 output_name = "mojo_wm_flow_init"
47 45
48 sources = [ 46 sources = [
49 "init/init.cc", 47 "init/init.cc",
50 ] 48 ]
51 49
52 deps = [ 50 deps = [
53 "//base", 51 "//base",
54 "//ui/gfx", 52 "//ui/gfx",
55 "//ui/gfx/geometry", 53 "//ui/gfx/geometry",
56 "//mojo/application", 54 "//mojo/application",
57 "//mojo/public/c/system:for_shared_library", 55 "//mojo/public/c/system:for_shared_library",
58 "//mojo/public/interfaces/application:application", 56 "//mojo/public/interfaces/application:application",
59 "//mojo/services/public/cpp/view_manager", 57 "//mojo/services/public/cpp/view_manager",
60 "//mojo/services/public/interfaces/view_manager", 58 "//mojo/services/public/interfaces/view_manager",
61 ] 59 ]
62 } 60 }
63 61
64 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_app
65 shared_library("app") { 62 shared_library("app") {
66 output_name = "mojo_wm_flow_app" 63 output_name = "mojo_wm_flow_app"
67 64
68 sources = [ 65 sources = [
69 "app/app.cc", 66 "app/app.cc",
70 ] 67 ]
71 68
72 deps = [ 69 deps = [
73 ":embedder_bindings", 70 ":embedder_bindings",
74 ":embeddee_bindings", 71 ":embeddee_bindings",
75 "//base", 72 "//base",
76 "//mojo/application", 73 "//mojo/application",
77 "//mojo/examples/bitmap_uploader", 74 "//mojo/examples/bitmap_uploader",
78 "//mojo/public/c/system:for_shared_library", 75 "//mojo/public/c/system:for_shared_library",
79 "//mojo/public/interfaces/application:application", 76 "//mojo/public/interfaces/application:application",
80 "//mojo/services/public/cpp/view_manager", 77 "//mojo/services/public/cpp/view_manager",
81 "//mojo/services/window_manager:lib", 78 "//mojo/services/window_manager:lib",
82 ] 79 ]
83 } 80 }
84 81
85 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embedded
86 shared_library("embedded") { 82 shared_library("embedded") {
87 output_name = "mojo_wm_flow_embedded" 83 output_name = "mojo_wm_flow_embedded"
88 84
89 sources = [ 85 sources = [
90 "embedded/embedded.cc", 86 "embedded/embedded.cc",
91 ] 87 ]
92 88
93 deps = [ 89 deps = [
94 ":embedder_bindings", 90 ":embedder_bindings",
95 ":embeddee_bindings", 91 ":embeddee_bindings",
96 "//base", 92 "//base",
97 "//mojo/application", 93 "//mojo/application",
98 "//mojo/examples/bitmap_uploader", 94 "//mojo/examples/bitmap_uploader",
99 "//mojo/public/c/system:for_shared_library", 95 "//mojo/public/c/system:for_shared_library",
100 "//mojo/services/public/cpp/view_manager", 96 "//mojo/services/public/cpp/view_manager",
101 "//mojo/services/window_manager:lib", 97 "//mojo/services/window_manager:lib",
102 ] 98 ]
103 } 99 }
104 100
105 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embedder_bindings
106 mojom("embedder_bindings") { 101 mojom("embedder_bindings") {
107 sources = [ 102 sources = [
108 "app/embedder.mojom", 103 "app/embedder.mojom",
109 ] 104 ]
110 } 105 }
111 106
112 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embeddee_bindings
113 mojom("embeddee_bindings") { 107 mojom("embeddee_bindings") {
114 sources = [ 108 sources = [
115 "embedded/embeddee.mojom", 109 "embedded/embeddee.mojom",
116 ] 110 ]
117 } 111 }
OLDNEW
« no previous file with comments | « mojo/examples/window_manager/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698