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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/mojo.gyp ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo_examples.gypi
diff --git a/mojo/mojo_examples.gypi b/mojo/mojo_examples.gypi
index c23b4aa488a34e6951145fe39aad5e7078ca3e1d..6302fbd09e601c5985cbdecdcaa706ba2604279d 100644
--- a/mojo/mojo_examples.gypi
+++ b/mojo/mojo_examples.gypi
@@ -267,6 +267,87 @@
'public/cpp/application/lib/mojo_main_chromium.cc',
],
},
+ {
+ 'target_name': 'mojo_surfaces_app',
+ 'type': 'shared_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../cc/cc.gyp:cc',
+ '../cc/cc.gyp:cc_surfaces',
+ '../skia/skia.gyp:skia',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../ui/gfx/gfx.gyp:gfx_geometry',
+ 'mojo_application',
+ 'mojo_common_lib',
+ 'mojo_environment_chromium',
+ 'mojo_geometry_bindings',
+ 'mojo_geometry_lib',
+ 'mojo_gles2',
+ 'mojo_native_viewport_bindings',
+ 'mojo_surfaces_bindings',
+ 'mojo_surfaces_app_bindings',
+ 'mojo_surfaces_lib',
+ 'mojo_system_impl',
+ ],
+ 'sources': [
+ 'examples/surfaces_app/embedder.cc',
+ 'examples/surfaces_app/embedder.h',
+ 'examples/surfaces_app/surfaces_app.cc',
+ 'examples/surfaces_app/surfaces_util.cc',
+ 'examples/surfaces_app/surfaces_util.h',
+ 'public/cpp/application/lib/mojo_main_chromium.cc',
+ ],
+ },
+ {
+ 'target_name': 'mojo_surfaces_app_bindings',
+ 'type': 'static_library',
+ 'sources': [
+ 'examples/surfaces_app/child.mojom',
+ ],
+ 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
+ 'export_dependent_settings': [
+ 'mojo_cpp_bindings',
+ ],
+ 'dependencies': [
+ 'mojo_cpp_bindings',
+ ],
+ },
+ {
+ 'target_name': 'package_mojo_surfaces_app',
+ 'variables': {
+ 'app_name': 'mojo_surfaces_app',
+ },
+ 'includes': [ 'build/package_app.gypi' ],
+ },
+ {
+ 'target_name': 'mojo_surfaces_child_app',
+ 'type': 'shared_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../cc/cc.gyp:cc',
+ '../cc/cc.gyp:cc_surfaces',
+ '../skia/skia.gyp:skia',
+ '../ui/gfx/gfx.gyp:gfx',
+ '../ui/gfx/gfx.gyp:gfx_geometry',
+ 'mojo_application',
+ 'mojo_common_lib',
+ 'mojo_environment_chromium',
+ 'mojo_geometry_bindings',
+ 'mojo_geometry_lib',
+ 'mojo_surfaces_app_bindings',
+ 'mojo_surfaces_bindings',
+ 'mojo_surfaces_lib',
+ 'mojo_system_impl',
+ ],
+ 'sources': [
+ 'examples/surfaces_app/child_app.cc',
+ 'examples/surfaces_app/child_impl.cc',
+ 'examples/surfaces_app/child_impl.h',
+ 'examples/surfaces_app/surfaces_util.cc',
+ 'examples/surfaces_app/surfaces_util.h',
+ 'public/cpp/application/lib/mojo_main_chromium.cc',
+ ],
+ },
],
'conditions': [
['use_aura==1', {
« 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