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

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

Issue 1398973004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 2). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_1
Patch Set: add missing copyright notices 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
« no previous file with comments | « examples/window_manager/window_manager.mojom ('k') | examples/wm_flow/wm/wm.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/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 group("wm_flow") { 9 group("wm_flow") {
10 deps = [ 10 deps = [
11 ":app", 11 ":app",
12 ":embedded", 12 ":embedded",
13 ":wm", 13 ":wm",
14 ] 14 ]
15 } 15 }
16 16
17 mojo_native_application("wm") { 17 mojo_native_application("wm") {
18 output_name = "wm_flow_wm" 18 output_name = "wm_flow_wm"
19 19
20 sources = [ 20 sources = [
21 "wm/wm.cc",
22 "wm/frame_controller.cc", 21 "wm/frame_controller.cc",
23 "wm/frame_controller.h", 22 "wm/frame_controller.h",
23 "wm/wm.cc",
24 ] 24 ]
25 25
26 deps = [ 26 deps = [
27 ":wm_bindings", 27 ":wm_bindings",
28 "//base", 28 "//base",
29 "//mojo/application", 29 "//mojo/application",
30 "//mojo/converters/geometry", 30 "//mojo/converters/geometry",
31 "//mojo/public/interfaces/application", 31 "//mojo/public/interfaces/application",
32 "//mojo/services/input_events/public/interfaces", 32 "//mojo/services/input_events/interfaces",
33 "//mojo/services/view_manager/public/cpp", 33 "//mojo/services/view_manager/public/cpp",
34 "//services/window_manager:lib", 34 "//services/window_manager:lib",
35 "//skia", 35 "//skia",
36 "//ui/gfx/geometry", 36 "//ui/gfx/geometry",
37 "//url", 37 "//url",
38 ] 38 ]
39 } 39 }
40 40
41 mojo_native_application("app") { 41 mojo_native_application("app") {
42 output_name = "wm_flow_app" 42 output_name = "wm_flow_app"
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 sources = [ 90 sources = [
91 "app/embedder.mojom", 91 "app/embedder.mojom",
92 ] 92 ]
93 } 93 }
94 94
95 mojom("embeddee_bindings") { 95 mojom("embeddee_bindings") {
96 sources = [ 96 sources = [
97 "embedded/embeddee.mojom", 97 "embedded/embeddee.mojom",
98 ] 98 ]
99 } 99 }
OLDNEW
« no previous file with comments | « examples/window_manager/window_manager.mojom ('k') | examples/wm_flow/wm/wm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698