| 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"', {
|
|
|