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

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

Issue 591633002: Replace most uses of ViewManagerInitService with client lib ViewManager::Embed() to offer the same … (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/demo_launcher/demo_launcher.cc ('k') | mojo/examples/wm_flow/app/app.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("//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_flow_wm", 15 ":wm",
16 ] 16 ]
17 } 17 }
18 18
19 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_wm 19 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_wm
20 shared_library("wm_flow_wm") { 20 shared_library("wm") {
21 output_name = "mojo_wm_flow_wm" 21 output_name = "mojo_wm_flow_wm"
22 22
23 sources = [ 23 sources = [
24 "wm/wm.cc", 24 "wm/wm.cc",
25 "wm/frame_controller.cc",
26 "wm/frame_controller.h",
25 ] 27 ]
26 28
27 deps = [ 29 deps = [
28 "//base", 30 "//base",
29 "//mojo/application", 31 "//mojo/application",
30 "//mojo/public/c/system:for_shared_library", 32 "//mojo/public/c/system:for_shared_library",
31 "//mojo/services/public/cpp/view_manager", 33 "//mojo/services/public/cpp/view_manager",
32 "//mojo/services/window_manager:lib", 34 "//mojo/services/window_manager:lib",
35 "//mojo/views",
33 ] 36 ]
34 } 37 }
35 38
36 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_init 39 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_init
37 shared_library("init") { 40 shared_library("init") {
38 output_name = "mojo_wm_flow_init" 41 output_name = "mojo_wm_flow_init"
39 42
40 sources = [ 43 sources = [
41 "init/init.cc", 44 "init/init.cc",
42 ] 45 ]
43 46
44 deps = [ 47 deps = [
45 "//base", 48 "//base",
46 "//mojo/application", 49 "//mojo/application",
47 "//mojo/public/c/system:for_shared_library", 50 "//mojo/public/c/system:for_shared_library",
51 "//mojo/services/public/cpp/view_manager",
48 "//mojo/services/public/interfaces/view_manager", 52 "//mojo/services/public/interfaces/view_manager",
49 ] 53 ]
50 } 54 }
51 55
52 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_app 56 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_app
53 shared_library("app") { 57 shared_library("app") {
54 output_name = "mojo_wm_flow_app" 58 output_name = "mojo_wm_flow_app"
55 59
56 sources = [ 60 sources = [
57 "app/app.cc", 61 "app/app.cc",
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 "app/embedder.mojom", 97 "app/embedder.mojom",
94 ] 98 ]
95 } 99 }
96 100
97 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embeddee_bindings 101 # GYP version: mojo/mojo_examples.gypi:mojo_wm_flow_embeddee_bindings
98 mojom("embeddee_bindings") { 102 mojom("embeddee_bindings") {
99 sources = [ 103 sources = [
100 "embedded/embeddee.mojom", 104 "embedded/embeddee.mojom",
101 ] 105 ]
102 } 106 }
OLDNEW
« no previous file with comments | « mojo/examples/demo_launcher/demo_launcher.cc ('k') | mojo/examples/wm_flow/app/app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698