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

Side by Side Diff: mojo/mojo_examples.gypi

Issue 361123002: Mojo surfaces service and example app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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': 'loadable_module', 9 'type': 'loadable_module',
10 'dependencies': [ 10 'dependencies': [
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 'examples/pepper_container_app/plugin_module.h', 260 'examples/pepper_container_app/plugin_module.h',
261 'examples/pepper_container_app/ppb_core_thunk.cc', 261 'examples/pepper_container_app/ppb_core_thunk.cc',
262 'examples/pepper_container_app/ppb_opengles2_thunk.cc', 262 'examples/pepper_container_app/ppb_opengles2_thunk.cc',
263 'examples/pepper_container_app/resource_creation_impl.cc', 263 'examples/pepper_container_app/resource_creation_impl.cc',
264 'examples/pepper_container_app/resource_creation_impl.h', 264 'examples/pepper_container_app/resource_creation_impl.h',
265 'examples/pepper_container_app/thunk.h', 265 'examples/pepper_container_app/thunk.h',
266 'examples/pepper_container_app/type_converters.h', 266 'examples/pepper_container_app/type_converters.h',
267 'public/cpp/application/lib/mojo_main_chromium.cc', 267 'public/cpp/application/lib/mojo_main_chromium.cc',
268 ], 268 ],
269 }, 269 },
270 {
271 'target_name': 'mojo_surfaces_app',
272 'type': 'shared_library',
273 'dependencies': [
274 '../base/base.gyp:base',
275 '../cc/cc.gyp:cc',
276 '../cc/cc.gyp:cc_surfaces',
277 '../skia/skia.gyp:skia',
278 '../ui/gfx/gfx.gyp:gfx',
279 '../ui/gfx/gfx.gyp:gfx_geometry',
280 'mojo_application',
281 'mojo_common_lib',
282 'mojo_environment_chromium',
283 'mojo_geometry_bindings',
284 'mojo_geometry_lib',
285 'mojo_gles2',
286 'mojo_native_viewport_bindings',
287 'mojo_surfaces_bindings',
288 'mojo_surfaces_app_bindings',
289 'mojo_surfaces_lib',
290 'mojo_system_impl',
291 ],
292 'sources': [
293 'examples/surfaces_app/embedder.cc',
294 'examples/surfaces_app/embedder.h',
295 'examples/surfaces_app/surfaces_app.cc',
296 'examples/surfaces_app/surfaces_util.cc',
297 'examples/surfaces_app/surfaces_util.h',
298 'public/cpp/application/lib/mojo_main_chromium.cc',
299 ],
300 },
301 {
302 'target_name': 'mojo_surfaces_app_bindings',
303 'type': 'static_library',
304 'sources': [
305 'examples/surfaces_app/child.mojom',
306 ],
307 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
308 'export_dependent_settings': [
309 'mojo_cpp_bindings',
310 ],
311 'dependencies': [
312 'mojo_cpp_bindings',
313 ],
314 },
315 {
316 'target_name': 'package_mojo_surfaces_app',
317 'variables': {
318 'app_name': 'mojo_surfaces_app',
319 },
320 'includes': [ 'build/package_app.gypi' ],
321 },
322 {
323 'target_name': 'mojo_surfaces_child_app',
324 'type': 'shared_library',
325 'dependencies': [
326 '../base/base.gyp:base',
327 '../cc/cc.gyp:cc',
328 '../cc/cc.gyp:cc_surfaces',
329 '../skia/skia.gyp:skia',
330 '../ui/gfx/gfx.gyp:gfx',
331 '../ui/gfx/gfx.gyp:gfx_geometry',
332 'mojo_application',
333 'mojo_common_lib',
334 'mojo_environment_chromium',
335 'mojo_geometry_bindings',
336 'mojo_geometry_lib',
337 'mojo_surfaces_app_bindings',
338 'mojo_surfaces_bindings',
339 'mojo_surfaces_lib',
340 'mojo_system_impl',
341 ],
342 'sources': [
343 'examples/surfaces_app/child_app.cc',
344 'examples/surfaces_app/child_impl.cc',
345 'examples/surfaces_app/child_impl.h',
346 'examples/surfaces_app/surfaces_util.cc',
347 'examples/surfaces_app/surfaces_util.h',
348 'public/cpp/application/lib/mojo_main_chromium.cc',
349 ],
350 },
270 ], 351 ],
271 'conditions': [ 352 'conditions': [
272 ['use_aura==1', { 353 ['use_aura==1', {
273 'targets': [ 354 'targets': [
274 { 355 {
275 'target_name': 'mojo_aura_demo', 356 'target_name': 'mojo_aura_demo',
276 'type': 'loadable_module', 357 'type': 'loadable_module',
277 'dependencies': [ 358 'dependencies': [
278 '../base/base.gyp:base', 359 '../base/base.gyp:base',
279 '../cc/cc.gyp:cc', 360 '../cc/cc.gyp:cc',
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 ], 654 ],
574 'sources': [ 655 'sources': [
575 'examples/dbus_echo/dbus_echo_app.cc', 656 'examples/dbus_echo/dbus_echo_app.cc',
576 'public/cpp/application/lib/mojo_main_standalone.cc', 657 'public/cpp/application/lib/mojo_main_standalone.cc',
577 ], 658 ],
578 }, 659 },
579 ], 660 ],
580 }], 661 }],
581 ], 662 ],
582 } 663 }
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