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