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