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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 187183002: Add creation of ServiceManager to Content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge problem Created 6 years, 9 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/mojo.gyp ('k') | mojo/mojo_public.gypi » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'mojo_sample_app', 8 'target_name': 'mojo_sample_app',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'dependencies': [ 10 'dependencies': [
11 # TODO(darin): we should not be linking against these libraries! 11 # TODO(darin): we should not be linking against these libraries!
12 '../ui/gfx/gfx.gyp:gfx', 12 '../ui/gfx/gfx.gyp:gfx',
13 '../ui/gfx/gfx.gyp:gfx_geometry', 13 '../ui/gfx/gfx.gyp:gfx_geometry',
14 '../ui/gl/gl.gyp:gl', 14 '../ui/gl/gl.gyp:gl',
15 'mojo_bindings',
15 'mojo_environment_standalone', 16 'mojo_environment_standalone',
16 'mojo_gles2', 17 'mojo_gles2',
17 'mojo_native_viewport_bindings', 18 'mojo_native_viewport_bindings',
18 'mojo_shell_bindings', 19 'mojo_shell_client',
19 'mojo_system', 20 'mojo_system',
20 'mojo_utility', 21 'mojo_utility',
21 ], 22 ],
22 'sources': [ 23 'sources': [
23 'examples/sample_app/gles2_client_impl.cc', 24 'examples/sample_app/gles2_client_impl.cc',
24 'examples/sample_app/gles2_client_impl.cc', 25 'examples/sample_app/gles2_client_impl.cc',
25 'examples/sample_app/sample_app.cc', 26 'examples/sample_app/sample_app.cc',
26 'examples/sample_app/spinning_cube.cc', 27 'examples/sample_app/spinning_cube.cc',
27 'examples/sample_app/spinning_cube.h', 28 'examples/sample_app/spinning_cube.h',
28 ], 29 ],
(...skipping 27 matching lines...) Expand all
56 'dependencies': [ 57 'dependencies': [
57 '../base/base.gyp:base', 58 '../base/base.gyp:base',
58 '../cc/cc.gyp:cc', 59 '../cc/cc.gyp:cc',
59 '../ui/gfx/gfx.gyp:gfx', 60 '../ui/gfx/gfx.gyp:gfx',
60 '../ui/gfx/gfx.gyp:gfx_geometry', 61 '../ui/gfx/gfx.gyp:gfx_geometry',
61 'mojo_common_lib', 62 'mojo_common_lib',
62 'mojo_compositor_support', 63 'mojo_compositor_support',
63 'mojo_environment_chromium', 64 'mojo_environment_chromium',
64 'mojo_gles2', 65 'mojo_gles2',
65 'mojo_native_viewport_bindings', 66 'mojo_native_viewport_bindings',
66 'mojo_shell_bindings', 67 'mojo_shell_client',
67 'mojo_system', 68 'mojo_system',
68 ], 69 ],
69 'sources': [ 70 'sources': [
70 'examples/compositor_app/compositor_app.cc', 71 'examples/compositor_app/compositor_app.cc',
71 'examples/compositor_app/compositor_host.cc', 72 'examples/compositor_app/compositor_host.cc',
72 'examples/compositor_app/compositor_host.h', 73 'examples/compositor_app/compositor_host.h',
73 ], 74 ],
74 }, 75 },
75 { 76 {
76 'target_name': 'package_mojo_compositor_app', 77 'target_name': 'package_mojo_compositor_app',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'dependencies': [ 114 'dependencies': [
114 '../base/base.gyp:base', 115 '../base/base.gyp:base',
115 '../ui/aura/aura.gyp:aura', 116 '../ui/aura/aura.gyp:aura',
116 '../ui/base/ui_base.gyp:ui_base', 117 '../ui/base/ui_base.gyp:ui_base',
117 '../ui/gfx/gfx.gyp:gfx', 118 '../ui/gfx/gfx.gyp:gfx',
118 '../ui/gfx/gfx.gyp:gfx_geometry', 119 '../ui/gfx/gfx.gyp:gfx_geometry',
119 'mojo_aura_demo_support', 120 'mojo_aura_demo_support',
120 'mojo_common_lib', 121 'mojo_common_lib',
121 'mojo_environment_chromium', 122 'mojo_environment_chromium',
122 'mojo_gles2', 123 'mojo_gles2',
123 'mojo_shell_bindings', 124 'mojo_shell_client',
124 'mojo_system', 125 'mojo_system',
125 ], 126 ],
126 'sources': [ 127 'sources': [
127 'examples/aura_demo/aura_demo.cc', 128 'examples/aura_demo/aura_demo.cc',
128 ], 129 ],
129 }, 130 },
130 { 131 {
131 'target_name': 'package_mojo_aura_demo', 132 'target_name': 'package_mojo_aura_demo',
132 'variables': { 133 'variables': {
133 'app_name': 'mojo_aura_demo', 134 'app_name': 'mojo_aura_demo',
(...skipping 27 matching lines...) Expand all
161 '../ui/base/ui_base.gyp:ui_base', 162 '../ui/base/ui_base.gyp:ui_base',
162 '../ui/gfx/gfx.gyp:gfx', 163 '../ui/gfx/gfx.gyp:gfx',
163 '../ui/gfx/gfx.gyp:gfx_geometry', 164 '../ui/gfx/gfx.gyp:gfx_geometry',
164 '../ui/views/views.gyp:views', 165 '../ui/views/views.gyp:views',
165 '../url/url.gyp:url_lib', 166 '../url/url.gyp:url_lib',
166 'mojo_aura_demo_support', 167 'mojo_aura_demo_support',
167 'mojo_common_lib', 168 'mojo_common_lib',
168 'mojo_environment_chromium', 169 'mojo_environment_chromium',
169 'mojo_gles2', 170 'mojo_gles2',
170 'mojo_launcher_bindings', 171 'mojo_launcher_bindings',
171 'mojo_shell_bindings', 172 'mojo_shell_client',
172 'mojo_system', 173 'mojo_system',
173 ], 174 ],
174 'sources': [ 175 'sources': [
175 'examples/launcher/launcher.cc', 176 'examples/launcher/launcher.cc',
176 ], 177 ],
177 }, 178 },
178 { 179 {
179 'target_name': 'package_mojo_launcher', 180 'target_name': 'package_mojo_launcher',
180 'variables': { 181 'variables': {
181 'app_name': 'mojo_launcher', 182 'app_name': 'mojo_launcher',
(...skipping 19 matching lines...) Expand all
201 { 202 {
202 'target_name': 'mojo_view_manager', 203 'target_name': 'mojo_view_manager',
203 'type': 'shared_library', 204 'type': 'shared_library',
204 'dependencies': [ 205 'dependencies': [
205 '../base/base.gyp:base', 206 '../base/base.gyp:base',
206 '../ui/gfx/gfx.gyp:gfx_geometry', 207 '../ui/gfx/gfx.gyp:gfx_geometry',
207 'mojo_common_lib', 208 'mojo_common_lib',
208 'mojo_environment_chromium', 209 'mojo_environment_chromium',
209 'mojo_launcher_bindings', 210 'mojo_launcher_bindings',
210 'mojo_native_viewport_bindings', 211 'mojo_native_viewport_bindings',
211 'mojo_shell_bindings', 212 'mojo_shell_client',
212 'mojo_system', 213 'mojo_system',
213 'mojo_view_manager_bindings', 214 'mojo_view_manager_bindings',
214 ], 215 ],
215 'sources': [ 216 'sources': [
216 'examples/view_manager/view_manager.cc', 217 'examples/view_manager/view_manager.cc',
217 ], 218 ],
218 }, 219 },
219 { 220 {
220 'target_name': 'package_mojo_view_manager', 221 'target_name': 'package_mojo_view_manager',
221 'variables': { 222 'variables': {
222 'app_name': 'mojo_view_manager', 223 'app_name': 'mojo_view_manager',
223 }, 224 },
224 'includes': [ 'build/package_app.gypi' ], 225 'includes': [ 'build/package_app.gypi' ],
225 }, 226 },
226 ], 227 ],
227 }], 228 }],
228 ], 229 ],
229 } 230 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_public.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698