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

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, 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 side-by-side diff with in-line comments
Download patch
Index: mojo/mojo_examples.gypi
diff --git a/mojo/mojo_examples.gypi b/mojo/mojo_examples.gypi
index 6787a18db29162b2acf59096ecf3bcd49e43d674..a9105e9c30cb0b33c756f0809783c88cf8f09fcf 100644
--- a/mojo/mojo_examples.gypi
+++ b/mojo/mojo_examples.gypi
@@ -266,6 +266,81 @@
'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_surfaces',
+ '../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',
Ben Goodger (Google) 2014/07/07 21:07:33 ???
jamesr 2014/07/07 21:11:40 whoops, must be a merge artifact or something. I d
+ ],
+ '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': [
+ '../cc/cc.gyp:cc_surfaces',
+ '../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',
+ ],
+ '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', {

Powered by Google App Engine
This is Rietveld 408576698