| Index: mojo/mojo_examples.gypi
|
| diff --git a/mojo/mojo_examples.gypi b/mojo/mojo_examples.gypi
|
| index 430d9b40c7acd54b9dc2eacdc78e1ca724c2b76d..178588f2e3aeb53424cf0b79b3ce14d9740309fa 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',
|
| + '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"', {
|
|
|