Chromium Code Reviews| 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 'mojo_common_lib', | 10 'mojo_common_lib', |
| 11 'mojo_gles2', | 11 'mojo_gles2', |
| 12 'mojo_gles2_bindings', | 12 'mojo_gles2_bindings', |
| 13 'mojo_native_viewport_bindings', | 13 'mojo_native_viewport_bindings', |
| 14 'mojo_system', | 14 'mojo_system', |
| 15 'shell_bindings', | |
|
abarth-chromium
2013/12/10 01:06:03
mojo_shell_bindings ?
DaveMoore
2013/12/10 03:00:45
Seems redundant, but ok.
On 2013/12/10 01:06:03, a
| |
| 15 ], | 16 ], |
| 16 'sources': [ | 17 'sources': [ |
| 17 'examples/sample_app/gles2_client_impl.cc', | 18 'examples/sample_app/gles2_client_impl.cc', |
| 18 'examples/sample_app/gles2_client_impl.cc', | 19 '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', | 20 'examples/sample_app/sample_app.cc', |
| 22 'examples/sample_app/spinning_cube.cc', | 21 'examples/sample_app/spinning_cube.cc', |
| 23 'examples/sample_app/spinning_cube.h', | 22 'examples/sample_app/spinning_cube.h', |
| 24 ], | 23 ], |
| 25 }, | 24 }, |
| 26 { | 25 { |
| 27 'target_name': 'hello_world_bindings', | 26 'target_name': 'hello_world_bindings', |
| 28 'type': 'static_library', | 27 'type': 'static_library', |
| 29 'sources': [ | 28 'sources': [ |
| 30 'examples/hello_world_service/hello_world_service.mojom', | 29 'examples/hello_world_service/hello_world_service.mojom', |
| (...skipping 14 matching lines...) Expand all Loading... | |
| 45 'export_dependent_settings': [ | 44 'export_dependent_settings': [ |
| 46 'hello_world_bindings', | 45 'hello_world_bindings', |
| 47 ], | 46 ], |
| 48 'sources': [ | 47 'sources': [ |
| 49 'examples/hello_world_service/hello_world_service_impl.cc', | 48 'examples/hello_world_service/hello_world_service_impl.cc', |
| 50 'examples/hello_world_service/hello_world_service_impl.h', | 49 'examples/hello_world_service/hello_world_service_impl.h', |
| 51 ], | 50 ], |
| 52 }, | 51 }, |
| 53 ], | 52 ], |
| 54 } | 53 } |
| OLD | NEW |