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

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

Issue 565323002: Move application:chromium bindings to mojo/application/ (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/png_viewer/png_viewer.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/application",
28 "//mojo/common", 29 "//mojo/common",
29 "//mojo/public/cpp/application:chromium",
30 "//mojo/environment:chromium", 30 "//mojo/environment:chromium",
31 "//mojo/services/public/interfaces/geometry", 31 "//mojo/services/public/interfaces/geometry",
32 "//mojo/services/public/cpp/geometry", 32 "//mojo/services/public/cpp/geometry",
33 "//mojo/services/public/interfaces/surfaces", 33 "//mojo/services/public/interfaces/surfaces",
34 "//mojo/services/public/cpp/surfaces", 34 "//mojo/services/public/cpp/surfaces",
35 ] + mojo_system_for_shared_library 35 ] + mojo_system_for_shared_library
36 36
37 sources = [ 37 sources = [
38 "embedder.cc", 38 "embedder.cc",
39 "embedder.h", 39 "embedder.h",
40 "surfaces_app.cc", 40 "surfaces_app.cc",
41 ] 41 ]
42 } 42 }
43 43
44 44
45 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_child_app 45 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_child_app
46 shared_library("child_app") { 46 shared_library("child_app") {
47 output_name = "mojo_surfaces_child_app" 47 output_name = "mojo_surfaces_child_app"
48 48
49 deps = [ 49 deps = [
50 ":bindings", 50 ":bindings",
51 ":util", 51 ":util",
52 "//base", 52 "//base",
53 "//cc", 53 "//cc",
54 "//cc/surfaces", 54 "//cc/surfaces",
55 "//skia", 55 "//skia",
56 "//ui/gfx", 56 "//ui/gfx",
57 "//ui/gfx/geometry", 57 "//ui/gfx/geometry",
58 "//mojo/application",
58 "//mojo/common", 59 "//mojo/common",
59 "//mojo/public/cpp/application:chromium",
60 "//mojo/environment:chromium", 60 "//mojo/environment:chromium",
61 "//mojo/services/public/interfaces/geometry", 61 "//mojo/services/public/interfaces/geometry",
62 "//mojo/services/public/cpp/geometry", 62 "//mojo/services/public/cpp/geometry",
63 "//mojo/services/public/interfaces/surfaces", 63 "//mojo/services/public/interfaces/surfaces",
64 "//mojo/services/public/cpp/surfaces", 64 "//mojo/services/public/cpp/surfaces",
65 ] + mojo_system_for_shared_library 65 ] + mojo_system_for_shared_library
66 66
67 sources = [ 67 sources = [
68 "child_app.cc", 68 "child_app.cc",
69 "child_impl.cc", 69 "child_impl.cc",
(...skipping 15 matching lines...) Expand all
85 85
86 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings 86 # GYP version: mojo/mojo_examples.gypi:mojo_surfaces_app_bindings
87 mojom("bindings") { 87 mojom("bindings") {
88 deps = [ 88 deps = [
89 "//mojo/services/public/interfaces/geometry", 89 "//mojo/services/public/interfaces/geometry",
90 "//mojo/services/public/interfaces/surfaces", 90 "//mojo/services/public/interfaces/surfaces",
91 ] 91 ]
92 92
93 sources = [ "child.mojom" ] 93 sources = [ "child.mojom" ]
94 } 94 }
OLDNEW
« no previous file with comments | « mojo/examples/png_viewer/png_viewer.cc ('k') | mojo/examples/surfaces_app/child_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698