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

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

Issue 684543003: Move //mojo/examples to //examples (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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/app/DEPS » ('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") {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 output_name = "wm_flow_app" 43 output_name = "wm_flow_app"
44 44
45 sources = [ 45 sources = [
46 "app/app.cc", 46 "app/app.cc",
47 ] 47 ]
48 48
49 deps = [ 49 deps = [
50 ":embedder_bindings", 50 ":embedder_bindings",
51 ":embeddee_bindings", 51 ":embeddee_bindings",
52 "//base", 52 "//base",
53 "//examples/bitmap_uploader",
53 "//mojo/application", 54 "//mojo/application",
54 "//mojo/examples/bitmap_uploader",
55 "//mojo/public/c/system:for_shared_library", 55 "//mojo/public/c/system:for_shared_library",
56 "//mojo/public/interfaces/application:application", 56 "//mojo/public/interfaces/application:application",
57 "//mojo/services/public/cpp/view_manager", 57 "//mojo/services/public/cpp/view_manager",
58 "//mojo/services/window_manager:lib", 58 "//mojo/services/window_manager:lib",
59 ] 59 ]
60 } 60 }
61 61
62 shared_library("embedded") { 62 shared_library("embedded") {
63 output_name = "wm_flow_embedded" 63 output_name = "wm_flow_embedded"
64 64
65 sources = [ 65 sources = [
66 "embedded/embedded.cc", 66 "embedded/embedded.cc",
67 ] 67 ]
68 68
69 deps = [ 69 deps = [
70 ":embeddee_bindings", 70 ":embeddee_bindings",
71 ":embedder_bindings", 71 ":embedder_bindings",
72 "//base", 72 "//base",
73 "//examples/bitmap_uploader",
73 "//mojo/application", 74 "//mojo/application",
74 "//mojo/examples/bitmap_uploader",
75 "//mojo/public/c/system:for_shared_library", 75 "//mojo/public/c/system:for_shared_library",
76 "//mojo/services/public/cpp/view_manager", 76 "//mojo/services/public/cpp/view_manager",
77 "//mojo/services/window_manager:lib", 77 "//mojo/services/window_manager:lib",
78 ] 78 ]
79 } 79 }
80 80
81 mojom("embedder_bindings") { 81 mojom("embedder_bindings") {
82 sources = [ 82 sources = [
83 "app/embedder.mojom", 83 "app/embedder.mojom",
84 ] 84 ]
85 } 85 }
86 86
87 mojom("embeddee_bindings") { 87 mojom("embeddee_bindings") {
88 sources = [ 88 sources = [
89 "embedded/embeddee.mojom", 89 "embedded/embeddee.mojom",
90 ] 90 ]
91 } 91 }
OLDNEW
« no previous file with comments | « examples/window_manager/window_manager.mojom ('k') | examples/wm_flow/app/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698