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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 'mojo_shell_client', | 290 'mojo_shell_client', |
291 'mojo_system', | 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"', { |
| 301 'targets': [ |
| 302 { |
| 303 'target_name': 'mojo_dbus_echo', |
| 304 'type': 'shared_library', |
| 305 'dependencies': [ |
| 306 '../base/base.gyp:base', |
| 307 'mojo_bindings', |
| 308 'mojo_environment_standalone', |
| 309 'mojo_echo_bindings', |
| 310 'mojo_shell_client', |
| 311 'mojo_system', |
| 312 'mojo_utility', |
| 313 ], |
| 314 'sources': [ |
| 315 'examples/dbus_echo/dbus_echo_app.cc', |
| 316 ], |
| 317 }, |
| 318 ], |
| 319 }], |
300 ], | 320 ], |
301 } | 321 } |
OLD | NEW |