diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-22 21:58:10 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-22 21:58:10 +0000 |
commit | d0012d1f99eaf57dbc42c06361adc4f880c474ce (patch) | |
tree | 57dc537253b9e364e8fedc4f12bd05f7ac2d8e32 /mojo/mojo_examples.gypi | |
parent | 0544ea95970c19bcc0abbd33be91bc595f672f3a (diff) | |
download | chromium_src-d0012d1f99eaf57dbc42c06361adc4f880c474ce.zip chromium_src-d0012d1f99eaf57dbc42c06361adc4f880c474ce.tar.gz chromium_src-d0012d1f99eaf57dbc42c06361adc4f880c474ce.tar.bz2 |
Start of server side of viewmanager
I'll figure out tests then notifications next.
BUG=365012
TEST=none
R=ben@chromium.org
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=265180
Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=265300
Review URL: https://codereview.chromium.org/245663002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265376 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/mojo_examples.gypi')
-rw-r--r-- | mojo/mojo_examples.gypi | 42 |
1 files changed, 10 insertions, 32 deletions
diff --git a/mojo/mojo_examples.gypi b/mojo/mojo_examples.gypi index 1aa4438..4de6fbd 100644 --- a/mojo/mojo_examples.gypi +++ b/mojo/mojo_examples.gypi @@ -276,47 +276,25 @@ 'includes': [ 'build/package_app.gypi' ], }, { - 'target_name': 'mojo_view_manager_bindings', - 'type': 'static_library', - 'sources': [ - 'examples/view_manager/view_manager.mojom', - ], - 'variables': { - 'mojom_base_output_dir': 'mojo', - }, - 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], - 'export_dependent_settings': [ - 'mojo_bindings', - ], - 'dependencies': [ - 'mojo_bindings', - ], - }, - { - 'target_name': 'mojo_view_manager', + 'target_name': 'mojo_sample_view_manager_app', 'type': 'shared_library', 'dependencies': [ '../base/base.gyp:base', + '../ui/gfx/gfx.gyp:gfx', '../ui/gfx/gfx.gyp:gfx_geometry', - 'mojo_common_lib', - 'mojo_environment_chromium', - 'mojo_launcher_bindings', - 'mojo_native_viewport_bindings', - 'mojo_shell_client', - 'mojo_system_impl', + '../ui/gl/gl.gyp:gl', + 'mojo_bindings', + 'mojo_environment_standalone', + 'mojo_gles2', 'mojo_view_manager_bindings', + 'mojo_shell_client', + 'mojo_system', + 'mojo_utility', ], 'sources': [ - 'examples/view_manager/view_manager.cc', + 'examples/sample_view_manager_app/sample_view_manager_app.cc', ], }, - { - 'target_name': 'package_mojo_view_manager', - 'variables': { - 'app_name': 'mojo_view_manager', - }, - 'includes': [ 'build/package_app.gypi' ], - }, ], }], ], |