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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 303163005: Embedding demo in View manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 6 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_services.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': [
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 ], 239 ],
240 }, 240 },
241 { 241 {
242 'target_name': 'package_mojo_launcher', 242 'target_name': 'package_mojo_launcher',
243 'variables': { 243 'variables': {
244 'app_name': 'mojo_launcher', 244 'app_name': 'mojo_launcher',
245 }, 245 },
246 'includes': [ 'build/package_app.gypi' ], 246 'includes': [ 'build/package_app.gypi' ],
247 }, 247 },
248 { 248 {
249 'target_name': 'mojo_sample_view_manager_app', 249 'target_name': 'mojo_demo_launcher',
250 'type': 'shared_library', 250 'type': 'shared_library',
251 'dependencies': [ 251 'dependencies': [
252 '../base/base.gyp:base', 252 '../base/base.gyp:base',
253 '../skia/skia.gyp:skia', 253 '../skia/skia.gyp:skia',
254 '../ui/gfx/gfx.gyp:gfx', 254 '../ui/gfx/gfx.gyp:gfx',
255 '../ui/gfx/gfx.gyp:gfx_geometry', 255 '../ui/gfx/gfx.gyp:gfx_geometry',
256 '../ui/gl/gl.gyp:gl', 256 '../ui/gl/gl.gyp:gl',
257 'mojo_application',
257 'mojo_cpp_bindings', 258 'mojo_cpp_bindings',
258 'mojo_environment_chromium', 259 'mojo_environment_chromium',
259 'mojo_geometry_bindings', 260 'mojo_geometry_bindings',
260 'mojo_gles2', 261 'mojo_gles2',
261 'mojo_main_chromium', 262 'mojo_view_manager_bindings',
263 'mojo_system_impl',
264 'mojo_utility',
265 ],
266 'sources': [
267 'examples/demo_launcher/demo_launcher.cc',
268 'public/cpp/application/lib/mojo_main_chromium.cc',
269 ],
270 },
271 {
272 'target_name': 'mojo_window_manager',
273 'type': 'shared_library',
274 'dependencies': [
275 '../base/base.gyp:base',
276 '../ui/gfx/gfx.gyp:gfx_geometry',
277 '../ui/gl/gl.gyp:gl',
278 'mojo_application',
279 'mojo_cpp_bindings',
280 'mojo_environment_chromium',
281 'mojo_geometry_bindings',
282 'mojo_gles2',
262 'mojo_view_manager_lib', 283 'mojo_view_manager_lib',
263 'mojo_system_impl', 284 'mojo_system_impl',
264 'mojo_utility', 285 'mojo_utility',
265 ], 286 ],
266 'sources': [ 287 'sources': [
267 'examples/sample_view_manager_app/sample_view_manager_app.cc', 288 'examples/window_manager/window_manager.cc',
289 'public/cpp/application/lib/mojo_main_chromium.cc',
290 ],
291 },
292 {
293 'target_name': 'mojo_embedded_app',
294 'type': 'shared_library',
295 'dependencies': [
296 '../base/base.gyp:base',
297 '../ui/gfx/gfx.gyp:gfx_geometry',
298 '../ui/gl/gl.gyp:gl',
299 'mojo_application',
300 'mojo_cpp_bindings',
301 'mojo_environment_chromium',
302 'mojo_geometry_bindings',
303 'mojo_gles2',
304 'mojo_view_manager_lib',
305 'mojo_system_impl',
306 'mojo_utility',
307 ],
308 'sources': [
309 'examples/embedded_app/embedded_app.cc',
310 'public/cpp/application/lib/mojo_main_chromium.cc',
268 ], 311 ],
269 }, 312 },
270 ], 313 ],
271 }], 314 }],
272 ['OS=="linux"', { 315 ['OS=="linux"', {
273 'targets': [ 316 'targets': [
274 { 317 {
275 'target_name': 'mojo_dbus_echo', 318 'target_name': 'mojo_dbus_echo',
276 'type': 'shared_library', 319 'type': 'shared_library',
277 'dependencies': [ 320 'dependencies': [
278 '../base/base.gyp:base', 321 '../base/base.gyp:base',
279 'mojo_cpp_bindings', 322 'mojo_cpp_bindings',
280 'mojo_environment_standalone', 323 'mojo_environment_standalone',
281 'mojo_echo_bindings', 324 'mojo_echo_bindings',
282 'mojo_main_standalone', 325 'mojo_main_standalone',
283 'mojo_system', 326 'mojo_system',
284 'mojo_utility', 327 'mojo_utility',
285 ], 328 ],
286 'sources': [ 329 'sources': [
287 'examples/dbus_echo/dbus_echo_app.cc', 330 'examples/dbus_echo/dbus_echo_app.cc',
288 ], 331 ],
289 }, 332 },
290 ], 333 ],
291 }], 334 }],
292 ], 335 ],
293 } 336 }
OLDNEW
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698