| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'mojo_sample_app', | 8 'target_name': 'mojo_sample_app', |
| 9 'type': 'shared_library', | 9 'type': 'shared_library', |
| 10 'dependencies': [ | 10 'dependencies': [ |
| 11 '../base/base.gyp:base', | |
| 12 '../gpu/gpu.gyp:gles2_c_lib', | 11 '../gpu/gpu.gyp:gles2_c_lib', |
| 13 '../ui/gfx/gfx.gyp:gfx', | 12 '../ui/gfx/gfx.gyp:gfx', |
| 14 '../ui/gfx/gfx.gyp:gfx_geometry', | 13 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 15 '../ui/gl/gl.gyp:gl', | 14 '../ui/gl/gl.gyp:gl', |
| 16 'mojo_common_lib', | |
| 17 'mojo_gles2', | 15 'mojo_gles2', |
| 18 'mojo_gles2_bindings', | 16 'mojo_gles2_bindings', |
| 19 'mojo_native_viewport_bindings', | 17 'mojo_native_viewport_bindings', |
| 20 'mojo_shell_bindings', | 18 'mojo_shell_bindings', |
| 21 'mojo_system', | 19 'mojo_system', |
| 20 'mojo_utility', |
| 22 ], | 21 ], |
| 23 'sources': [ | 22 'sources': [ |
| 24 'examples/sample_app/gles2_client_impl.cc', | 23 'examples/sample_app/gles2_client_impl.cc', |
| 25 'examples/sample_app/gles2_client_impl.cc', | 24 'examples/sample_app/gles2_client_impl.cc', |
| 26 'examples/sample_app/sample_app.cc', | 25 'examples/sample_app/sample_app.cc', |
| 27 'examples/sample_app/spinning_cube.cc', | 26 'examples/sample_app/spinning_cube.cc', |
| 28 'examples/sample_app/spinning_cube.h', | 27 'examples/sample_app/spinning_cube.h', |
| 29 ], | 28 ], |
| 30 }, | 29 }, |
| 31 { | 30 { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'target_name': 'package_mojo_aura_demo', | 113 'target_name': 'package_mojo_aura_demo', |
| 115 'variables': { | 114 'variables': { |
| 116 'app_name': 'mojo_aura_demo', | 115 'app_name': 'mojo_aura_demo', |
| 117 }, | 116 }, |
| 118 'includes': [ 'build/package_app.gypi' ], | 117 'includes': [ 'build/package_app.gypi' ], |
| 119 }, | 118 }, |
| 120 ], | 119 ], |
| 121 }], | 120 }], |
| 122 ], | 121 ], |
| 123 } | 122 } |
| OLD | NEW |