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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 }, | 312 }, |
313 { | 313 { |
314 'target_name': 'package_mojo_view_manager', | 314 'target_name': 'package_mojo_view_manager', |
315 'variables': { | 315 'variables': { |
316 'app_name': 'mojo_view_manager', | 316 'app_name': 'mojo_view_manager', |
317 }, | 317 }, |
318 'includes': [ 'build/package_app.gypi' ], | 318 'includes': [ 'build/package_app.gypi' ], |
319 }, | 319 }, |
320 ], | 320 ], |
321 }], | 321 }], |
| 322 ['OS=="linux"', { |
| 323 'targets': [ |
| 324 { |
| 325 'target_name': 'mojo_dbus_echo', |
| 326 'type': 'shared_library', |
| 327 'dependencies': [ |
| 328 '../base/base.gyp:base', |
| 329 'mojo_bindings', |
| 330 'mojo_environment_standalone', |
| 331 'mojo_echo_bindings', |
| 332 'mojo_shell_client', |
| 333 'mojo_system', |
| 334 'mojo_utility', |
| 335 ], |
| 336 'sources': [ |
| 337 'examples/dbus_echo/dbus_echo_app.cc', |
| 338 ], |
| 339 }, |
| 340 ], |
| 341 }], |
322 ], | 342 ], |
323 } | 343 } |
OLD | NEW |