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

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

Issue 441853002: mojo: first take on removing mojo_main_{chromium,standalone}. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « mojo/examples/sample_app/sample_app.cc ('k') | mojo/examples/surfaces_app/child_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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//mojo/system.gni") 6 import("//mojo/system.gni")
7 7
8 group("surfaces_app") { 8 group("surfaces_app") {
9 deps = [ 9 deps = [
10 ":child_app", 10 ":child_app",
11 ":parent_app", 11 ":parent_app",
12 ] 12 ]
13 } 13 }
14 14
15 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app 15 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app
16 shared_library("parent_app") { 16 shared_library("parent_app") {
17 output_name = "mojo_surfaces_app" 17 output_name = "mojo_surfaces_app"
18 18
19 deps = [ 19 deps = [
20 ":bindings", 20 ":bindings",
21 ":util", 21 ":util",
22 "//base", 22 "//base",
23 "//cc", 23 "//cc",
24 "//cc/surfaces", 24 "//cc/surfaces",
25 "//skia", 25 "//skia",
26 "//ui/gfx", 26 "//ui/gfx",
27 "//ui/gfx/geometry", 27 "//ui/gfx/geometry",
28 "//mojo/common", 28 "//mojo/common",
29 "//mojo/public/cpp/application:chromium", 29 "//mojo/public/cpp/application:chromium",
30 "//mojo/public/cpp/application:main_chromium",
31 "//mojo/environment:chromium", 30 "//mojo/environment:chromium",
32 "//mojo/services/public/interfaces/geometry", 31 "//mojo/services/public/interfaces/geometry",
33 "//mojo/services/public/cpp/geometry", 32 "//mojo/services/public/cpp/geometry",
34 "//mojo/services/public/interfaces/surfaces", 33 "//mojo/services/public/interfaces/surfaces",
35 "//mojo/services/public/cpp/surfaces", 34 "//mojo/services/public/cpp/surfaces",
36 ] + mojo_system_for_shared_library 35 ] + mojo_system_for_shared_library
37 36
38 sources = [ 37 sources = [
39 "embedder.cc", 38 "embedder.cc",
40 "embedder.h", 39 "embedder.h",
(...skipping 10 matching lines...) Expand all
51 ":bindings", 50 ":bindings",
52 ":util", 51 ":util",
53 "//base", 52 "//base",
54 "//cc", 53 "//cc",
55 "//cc/surfaces", 54 "//cc/surfaces",
56 "//skia", 55 "//skia",
57 "//ui/gfx", 56 "//ui/gfx",
58 "//ui/gfx/geometry", 57 "//ui/gfx/geometry",
59 "//mojo/common", 58 "//mojo/common",
60 "//mojo/public/cpp/application:chromium", 59 "//mojo/public/cpp/application:chromium",
61 "//mojo/public/cpp/application:main_chromium",
62 "//mojo/environment:chromium", 60 "//mojo/environment:chromium",
63 "//mojo/services/public/interfaces/geometry", 61 "//mojo/services/public/interfaces/geometry",
64 "//mojo/services/public/cpp/geometry", 62 "//mojo/services/public/cpp/geometry",
65 "//mojo/services/public/interfaces/surfaces", 63 "//mojo/services/public/interfaces/surfaces",
66 "//mojo/services/public/cpp/surfaces", 64 "//mojo/services/public/cpp/surfaces",
67 ] + mojo_system_for_shared_library 65 ] + mojo_system_for_shared_library
68 66
69 sources = [ 67 sources = [
70 "child_app.cc", 68 "child_app.cc",
71 "child_impl.cc", 69 "child_impl.cc",
(...skipping 15 matching lines...) Expand all
87 85
88 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings 86 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings
89 mojom("bindings") { 87 mojom("bindings") {
90 deps = [ 88 deps = [
91 "//mojo/services/public/interfaces/geometry", 89 "//mojo/services/public/interfaces/geometry",
92 "//mojo/services/public/interfaces/surfaces", 90 "//mojo/services/public/interfaces/surfaces",
93 ] 91 ]
94 92
95 sources = [ "child.mojom" ] 93 sources = [ "child.mojom" ]
96 } 94 }
OLDNEW
« no previous file with comments | « mojo/examples/sample_app/sample_app.cc ('k') | mojo/examples/surfaces_app/child_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698