Enable WebAudio support on Android/x86.
[chromium-blink-merge.git] / mojo / mojo_examples.gypi
blob08b889605d59fe4345399f329adba52441bf2018
2   'targets': [
3     {
4       'target_name': 'sample_app',
5       'type': 'shared_library',
6       'dependencies': [
7         '../base/base.gyp:base',
8         '../gpu/gpu.gyp:gles2_c_lib',
9         '../ui/gl/gl.gyp:gl',
10         'mojo_common_lib',
11         'mojo_gles2',
12         'mojo_gles2_bindings',
13         'mojo_native_viewport_bindings',
14         'mojo_system',
15       ],
16       'sources': [
17         'examples/sample_app/gles2_client_impl.cc',
18         'examples/sample_app/gles2_client_impl.cc',
19         'examples/sample_app/native_viewport_client_impl.cc',
20         'examples/sample_app/native_viewport_client_impl.h',
21         'examples/sample_app/sample_app.cc',
22         'examples/sample_app/spinning_cube.cc',
23         'examples/sample_app/spinning_cube.h',
24       ],
25     },
26     {
27       'target_name': 'hello_world_bindings',
28       'type': 'static_library',
29       'sources': [
30         'examples/hello_world_service/hello_world_service.mojom',
31       ],
32       'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ],
33       'export_dependent_settings': [
34         'mojo_bindings',
35         'mojo_system',
36       ],
37     },
38     {
39       'target_name': 'hello_world_service',
40       'type': 'static_library',
41       'dependencies': [
42         '../base/base.gyp:base',
43         'hello_world_bindings',
44       ],
45       'export_dependent_settings': [
46         'hello_world_bindings',
47       ],
48       'sources': [
49         'examples/hello_world_service/hello_world_service_impl.cc',
50         'examples/hello_world_service/hello_world_service_impl.h',
51       ],
52     },
53   ],