| 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': [ |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'examples/aura_demo/window_tree_host_mojo.cc', | 106 'examples/aura_demo/window_tree_host_mojo.cc', |
| 107 'examples/aura_demo/window_tree_host_mojo.h', | 107 'examples/aura_demo/window_tree_host_mojo.h', |
| 108 ], | 108 ], |
| 109 }, | 109 }, |
| 110 { | 110 { |
| 111 'target_name': 'mojo_aura_demo', | 111 'target_name': 'mojo_aura_demo', |
| 112 'type': 'shared_library', | 112 'type': 'shared_library', |
| 113 'dependencies': [ | 113 'dependencies': [ |
| 114 '../base/base.gyp:base', | 114 '../base/base.gyp:base', |
| 115 '../ui/aura/aura.gyp:aura', | 115 '../ui/aura/aura.gyp:aura', |
| 116 '../ui/base/ui_base.gyp:ui_base', |
| 116 '../ui/gfx/gfx.gyp:gfx', | 117 '../ui/gfx/gfx.gyp:gfx', |
| 117 '../ui/gfx/gfx.gyp:gfx_geometry', | 118 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 118 '../ui/ui.gyp:ui', | |
| 119 'mojo_aura_demo_support', | 119 'mojo_aura_demo_support', |
| 120 'mojo_common_lib', | 120 'mojo_common_lib', |
| 121 'mojo_environment_chromium', | 121 'mojo_environment_chromium', |
| 122 'mojo_gles2', | 122 'mojo_gles2', |
| 123 'mojo_shell_bindings', | 123 'mojo_shell_bindings', |
| 124 'mojo_system', | 124 'mojo_system', |
| 125 ], | 125 ], |
| 126 'sources': [ | 126 'sources': [ |
| 127 'examples/aura_demo/aura_demo.cc', | 127 'examples/aura_demo/aura_demo.cc', |
| 128 ], | 128 ], |
| (...skipping 22 matching lines...) Expand all Loading... |
| 151 ], | 151 ], |
| 152 }, | 152 }, |
| 153 { | 153 { |
| 154 'target_name': 'mojo_launcher', | 154 'target_name': 'mojo_launcher', |
| 155 'type': 'shared_library', | 155 'type': 'shared_library', |
| 156 'dependencies': [ | 156 'dependencies': [ |
| 157 '../base/base.gyp:base', | 157 '../base/base.gyp:base', |
| 158 '../base/base.gyp:base_i18n', | 158 '../base/base.gyp:base_i18n', |
| 159 '../ui/aura/aura.gyp:aura', | 159 '../ui/aura/aura.gyp:aura', |
| 160 '../ui/aura/aura.gyp:aura_test_support', | 160 '../ui/aura/aura.gyp:aura_test_support', |
| 161 '../ui/base/ui_base.gyp:ui_base', |
| 161 '../ui/gfx/gfx.gyp:gfx', | 162 '../ui/gfx/gfx.gyp:gfx', |
| 162 '../ui/gfx/gfx.gyp:gfx_geometry', | 163 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 163 '../ui/ui.gyp:ui', | |
| 164 '../ui/views/views.gyp:views', | 164 '../ui/views/views.gyp:views', |
| 165 '../url/url.gyp:url_lib', | 165 '../url/url.gyp:url_lib', |
| 166 'mojo_aura_demo_support', | 166 'mojo_aura_demo_support', |
| 167 'mojo_common_lib', | 167 'mojo_common_lib', |
| 168 'mojo_environment_chromium', | 168 'mojo_environment_chromium', |
| 169 'mojo_gles2', | 169 'mojo_gles2', |
| 170 'mojo_launcher_bindings', | 170 'mojo_launcher_bindings', |
| 171 'mojo_shell_bindings', | 171 'mojo_shell_bindings', |
| 172 'mojo_system', | 172 'mojo_system', |
| 173 ], | 173 ], |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 'target_name': 'package_mojo_view_manager', | 220 'target_name': 'package_mojo_view_manager', |
| 221 'variables': { | 221 'variables': { |
| 222 'app_name': 'mojo_view_manager', | 222 'app_name': 'mojo_view_manager', |
| 223 }, | 223 }, |
| 224 'includes': [ 'build/package_app.gypi' ], | 224 'includes': [ 'build/package_app.gypi' ], |
| 225 }, | 225 }, |
| 226 ], | 226 ], |
| 227 }], | 227 }], |
| 228 ], | 228 ], |
| 229 } | 229 } |
| OLD | NEW |