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 # TODO(darin): we should not be linking against these libraries! | 11 # TODO(darin): we should not be linking against these libraries! |
12 '../ui/gfx/gfx.gyp:gfx', | 12 '../ui/gfx/gfx.gyp:gfx', |
13 '../ui/gfx/gfx.gyp:gfx_geometry', | 13 '../ui/gfx/gfx.gyp:gfx_geometry', |
14 '../ui/gl/gl.gyp:gl', | 14 '../ui/gl/gl.gyp:gl', |
| 15 'mojo_bindings', |
15 'mojo_environment_standalone', | 16 'mojo_environment_standalone', |
16 'mojo_gles2', | 17 'mojo_gles2', |
17 'mojo_native_viewport_bindings', | 18 'mojo_native_viewport_bindings', |
18 'mojo_shell_bindings', | 19 'mojo_shell_client', |
19 'mojo_system', | 20 'mojo_system', |
20 'mojo_utility', | 21 'mojo_utility', |
21 ], | 22 ], |
22 'sources': [ | 23 'sources': [ |
23 'examples/sample_app/gles2_client_impl.cc', | 24 'examples/sample_app/gles2_client_impl.cc', |
24 'examples/sample_app/gles2_client_impl.cc', | 25 'examples/sample_app/gles2_client_impl.cc', |
25 'examples/sample_app/sample_app.cc', | 26 'examples/sample_app/sample_app.cc', |
26 'examples/sample_app/spinning_cube.cc', | 27 'examples/sample_app/spinning_cube.cc', |
27 'examples/sample_app/spinning_cube.h', | 28 'examples/sample_app/spinning_cube.h', |
28 ], | 29 ], |
(...skipping 27 matching lines...) Expand all Loading... |
56 'dependencies': [ | 57 'dependencies': [ |
57 '../base/base.gyp:base', | 58 '../base/base.gyp:base', |
58 '../cc/cc.gyp:cc', | 59 '../cc/cc.gyp:cc', |
59 '../ui/gfx/gfx.gyp:gfx', | 60 '../ui/gfx/gfx.gyp:gfx', |
60 '../ui/gfx/gfx.gyp:gfx_geometry', | 61 '../ui/gfx/gfx.gyp:gfx_geometry', |
61 'mojo_common_lib', | 62 'mojo_common_lib', |
62 'mojo_compositor_support', | 63 'mojo_compositor_support', |
63 'mojo_environment_chromium', | 64 'mojo_environment_chromium', |
64 'mojo_gles2', | 65 'mojo_gles2', |
65 'mojo_native_viewport_bindings', | 66 'mojo_native_viewport_bindings', |
66 'mojo_shell_bindings', | 67 'mojo_shell_client', |
67 'mojo_system', | 68 'mojo_system', |
68 ], | 69 ], |
69 'sources': [ | 70 'sources': [ |
70 'examples/compositor_app/compositor_app.cc', | 71 'examples/compositor_app/compositor_app.cc', |
71 'examples/compositor_app/compositor_host.cc', | 72 'examples/compositor_app/compositor_host.cc', |
72 'examples/compositor_app/compositor_host.h', | 73 'examples/compositor_app/compositor_host.h', |
73 ], | 74 ], |
74 }, | 75 }, |
75 { | 76 { |
76 'target_name': 'package_mojo_compositor_app', | 77 'target_name': 'package_mojo_compositor_app', |
77 'variables': { | 78 'variables': { |
78 'app_name': 'mojo_compositor_app', | 79 'app_name': 'mojo_compositor_app', |
79 }, | 80 }, |
80 'includes': [ 'build/package_app.gypi' ], | 81 'includes': [ 'build/package_app.gypi' ], |
81 }, | 82 }, |
82 { | 83 { |
83 'target_name': 'mojo_pepper_container_app', | 84 'target_name': 'mojo_pepper_container_app', |
84 'type': 'shared_library', | 85 'type': 'shared_library', |
85 'dependencies': [ | 86 'dependencies': [ |
86 '../base/base.gyp:base', | 87 '../base/base.gyp:base', |
87 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 88 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
88 '../ppapi/ppapi.gyp:ppapi_c', | 89 '../ppapi/ppapi.gyp:ppapi_c', |
89 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', | 90 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', |
90 'mojo_environment_chromium', | 91 'mojo_environment_chromium', |
91 'mojo_gles2', | 92 'mojo_gles2', |
92 'mojo_native_viewport_bindings', | 93 'mojo_native_viewport_bindings', |
93 'mojo_shell_bindings', | 94 'mojo_shell_client', |
94 'mojo_system', | 95 'mojo_system', |
95 ], | 96 ], |
96 'defines': [ | 97 'defines': [ |
97 # We don't really want to export. We could change how | 98 # We don't really want to export. We could change how |
98 # ppapi_{shared,thunk}_export.h are defined to avoid this. | 99 # ppapi_{shared,thunk}_export.h are defined to avoid this. |
99 'PPAPI_SHARED_IMPLEMENTATION', | 100 'PPAPI_SHARED_IMPLEMENTATION', |
100 'PPAPI_THUNK_IMPLEMENTATION', | 101 'PPAPI_THUNK_IMPLEMENTATION', |
101 ], | 102 ], |
102 'sources': [ | 103 'sources': [ |
103 # Source files from ppapi/. | 104 # Source files from ppapi/. |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 'dependencies': [ | 205 'dependencies': [ |
205 '../base/base.gyp:base', | 206 '../base/base.gyp:base', |
206 '../ui/aura/aura.gyp:aura', | 207 '../ui/aura/aura.gyp:aura', |
207 '../ui/base/ui_base.gyp:ui_base', | 208 '../ui/base/ui_base.gyp:ui_base', |
208 '../ui/gfx/gfx.gyp:gfx', | 209 '../ui/gfx/gfx.gyp:gfx', |
209 '../ui/gfx/gfx.gyp:gfx_geometry', | 210 '../ui/gfx/gfx.gyp:gfx_geometry', |
210 'mojo_aura_demo_support', | 211 'mojo_aura_demo_support', |
211 'mojo_common_lib', | 212 'mojo_common_lib', |
212 'mojo_environment_chromium', | 213 'mojo_environment_chromium', |
213 'mojo_gles2', | 214 'mojo_gles2', |
214 'mojo_shell_bindings', | 215 'mojo_shell_client', |
215 'mojo_system', | 216 'mojo_system', |
216 ], | 217 ], |
217 'sources': [ | 218 'sources': [ |
218 'examples/aura_demo/aura_demo.cc', | 219 'examples/aura_demo/aura_demo.cc', |
219 ], | 220 ], |
220 }, | 221 }, |
221 { | 222 { |
222 'target_name': 'package_mojo_aura_demo', | 223 'target_name': 'package_mojo_aura_demo', |
223 'variables': { | 224 'variables': { |
224 'app_name': 'mojo_aura_demo', | 225 'app_name': 'mojo_aura_demo', |
(...skipping 30 matching lines...) Expand all Loading... |
255 '../ui/base/ui_base.gyp:ui_base', | 256 '../ui/base/ui_base.gyp:ui_base', |
256 '../ui/gfx/gfx.gyp:gfx', | 257 '../ui/gfx/gfx.gyp:gfx', |
257 '../ui/gfx/gfx.gyp:gfx_geometry', | 258 '../ui/gfx/gfx.gyp:gfx_geometry', |
258 '../ui/views/views.gyp:views', | 259 '../ui/views/views.gyp:views', |
259 '../url/url.gyp:url_lib', | 260 '../url/url.gyp:url_lib', |
260 'mojo_aura_demo_support', | 261 'mojo_aura_demo_support', |
261 'mojo_common_lib', | 262 'mojo_common_lib', |
262 'mojo_environment_chromium', | 263 'mojo_environment_chromium', |
263 'mojo_gles2', | 264 'mojo_gles2', |
264 'mojo_launcher_bindings', | 265 'mojo_launcher_bindings', |
265 'mojo_shell_bindings', | 266 'mojo_shell_client', |
266 'mojo_system', | 267 'mojo_system', |
267 ], | 268 ], |
268 'sources': [ | 269 'sources': [ |
269 'examples/launcher/launcher.cc', | 270 'examples/launcher/launcher.cc', |
270 ], | 271 ], |
271 }, | 272 }, |
272 { | 273 { |
273 'target_name': 'package_mojo_launcher', | 274 'target_name': 'package_mojo_launcher', |
274 'variables': { | 275 'variables': { |
275 'app_name': 'mojo_launcher', | 276 'app_name': 'mojo_launcher', |
(...skipping 22 matching lines...) Expand all Loading... |
298 { | 299 { |
299 'target_name': 'mojo_view_manager', | 300 'target_name': 'mojo_view_manager', |
300 'type': 'shared_library', | 301 'type': 'shared_library', |
301 'dependencies': [ | 302 'dependencies': [ |
302 '../base/base.gyp:base', | 303 '../base/base.gyp:base', |
303 '../ui/gfx/gfx.gyp:gfx_geometry', | 304 '../ui/gfx/gfx.gyp:gfx_geometry', |
304 'mojo_common_lib', | 305 'mojo_common_lib', |
305 'mojo_environment_chromium', | 306 'mojo_environment_chromium', |
306 'mojo_launcher_bindings', | 307 'mojo_launcher_bindings', |
307 'mojo_native_viewport_bindings', | 308 'mojo_native_viewport_bindings', |
308 'mojo_shell_bindings', | 309 'mojo_shell_client', |
309 'mojo_system', | 310 'mojo_system', |
310 'mojo_view_manager_bindings', | 311 'mojo_view_manager_bindings', |
311 ], | 312 ], |
312 'sources': [ | 313 'sources': [ |
313 'examples/view_manager/view_manager.cc', | 314 'examples/view_manager/view_manager.cc', |
314 ], | 315 ], |
315 }, | 316 }, |
316 { | 317 { |
317 'target_name': 'package_mojo_view_manager', | 318 'target_name': 'package_mojo_view_manager', |
318 'variables': { | 319 'variables': { |
319 'app_name': 'mojo_view_manager', | 320 'app_name': 'mojo_view_manager', |
320 }, | 321 }, |
321 'includes': [ 'build/package_app.gypi' ], | 322 'includes': [ 'build/package_app.gypi' ], |
322 }, | 323 }, |
323 ], | 324 ], |
324 }], | 325 }], |
325 ], | 326 ], |
326 } | 327 } |
OLD | NEW |