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

Unified Diff: mojo/mojo_examples.gypi

Issue 433513005: Pass ServiceProvider thru ViewManagerService::Embed() allowing embedder & embeddee to expose servic… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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_public.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 00bfc7e01f2ea46f68e76c518a902bae4b45dae0..029ca211eb8980da63127c0a6139394c99c85d56 100644
--- a/mojo/mojo_examples.gypi
+++ b/mojo/mojo_examples.gypi
@@ -688,6 +688,34 @@
],
},
{
+ 'target_name': 'mojo_wm_flow_embedder_bindings',
+ 'type': 'static_library',
+ 'sources': [
+ 'examples/wm_flow/app/embedder.mojom',
+ ],
+ 'dependencies': [
+ 'mojo_base.gyp:mojo_cpp_bindings',
+ ],
+ 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
+ 'export_dependent_settings': [
+ 'mojo_base.gyp:mojo_cpp_bindings',
+ ],
+ },
+ {
+ 'target_name': 'mojo_wm_flow_embeddee_bindings',
+ 'type': 'static_library',
+ 'sources': [
+ 'examples/wm_flow/embedded/embeddee.mojom',
+ ],
+ 'dependencies': [
+ 'mojo_base.gyp:mojo_cpp_bindings',
+ ],
+ 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ],
+ 'export_dependent_settings': [
+ 'mojo_base.gyp:mojo_cpp_bindings',
+ ],
+ },
+ {
'target_name': 'mojo_wm_flow_app',
'type': 'loadable_module',
'dependencies': [
@@ -696,6 +724,8 @@
'mojo_base.gyp:mojo_environment_chromium',
'mojo_core_window_manager_bindings',
'mojo_view_manager_lib',
+ 'mojo_wm_flow_embeddee_bindings',
+ 'mojo_wm_flow_embedder_bindings',
'<(mojo_system_for_loadable_module)',
],
'sources': [
@@ -703,6 +733,24 @@
'public/cpp/application/lib/mojo_main_chromium.cc',
],
},
+ {
+ 'target_name': 'mojo_wm_flow_embedded',
+ 'type': 'loadable_module',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'mojo_base.gyp:mojo_application_chromium',
+ 'mojo_base.gyp:mojo_environment_chromium',
+ 'mojo_core_window_manager_bindings',
+ 'mojo_view_manager_lib',
+ 'mojo_wm_flow_embeddee_bindings',
+ 'mojo_wm_flow_embedder_bindings',
+ '<(mojo_system_for_loadable_module)',
+ ],
+ 'sources': [
+ 'examples/wm_flow/embedded/embedded.cc',
+ 'public/cpp/application/lib/mojo_main_chromium.cc',
+ ],
+ },
],
}],
['OS=="linux"', {
« 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