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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 }, | 277 }, |
278 { | 278 { |
279 'target_name': 'mojo_sample_view_manager_app', | 279 'target_name': 'mojo_sample_view_manager_app', |
280 'type': 'shared_library', | 280 'type': 'shared_library', |
281 'dependencies': [ | 281 'dependencies': [ |
282 '../base/base.gyp:base', | 282 '../base/base.gyp:base', |
283 '../ui/gfx/gfx.gyp:gfx', | 283 '../ui/gfx/gfx.gyp:gfx', |
284 '../ui/gfx/gfx.gyp:gfx_geometry', | 284 '../ui/gfx/gfx.gyp:gfx_geometry', |
285 '../ui/gl/gl.gyp:gl', | 285 '../ui/gl/gl.gyp:gl', |
286 'mojo_bindings', | 286 'mojo_bindings', |
287 'mojo_environment_chromium', | 287 'mojo_environment_standalone', |
288 'mojo_gles2', | 288 'mojo_gles2', |
289 'mojo_view_manager_lib', | 289 'mojo_view_manager_bindings', |
290 'mojo_shell_client', | 290 'mojo_shell_client', |
291 'mojo_system_impl', | 291 'mojo_system', |
292 'mojo_utility', | 292 'mojo_utility', |
293 ], | 293 ], |
294 'sources': [ | 294 'sources': [ |
295 'examples/sample_view_manager_app/sample_view_manager_app.cc', | 295 'examples/sample_view_manager_app/sample_view_manager_app.cc', |
296 ], | 296 ], |
297 }, | 297 }, |
298 ], | 298 ], |
299 }], | 299 }], |
300 ['OS=="linux"', { | 300 ['OS=="linux"', { |
301 'targets': [ | 301 'targets': [ |
(...skipping 10 matching lines...) Expand all Loading... |
312 'mojo_utility', | 312 'mojo_utility', |
313 ], | 313 ], |
314 'sources': [ | 314 'sources': [ |
315 'examples/dbus_echo/dbus_echo_app.cc', | 315 'examples/dbus_echo/dbus_echo_app.cc', |
316 ], | 316 ], |
317 }, | 317 }, |
318 ], | 318 ], |
319 }], | 319 }], |
320 ], | 320 ], |
321 } | 321 } |
OLD | NEW |