| 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 # GN version: //mojo/examples/echo:client | 8 # GN version: //mojo/examples/echo:client |
| 9 'target_name': 'mojo_echo_client', | 9 'target_name': 'mojo_echo_client', |
| 10 'type': 'loadable_module', | 10 'type': 'loadable_module', |
| (...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 ['OS=="linux"', { | 818 ['OS=="linux"', { |
| 819 'targets': [ | 819 'targets': [ |
| 820 { | 820 { |
| 821 'target_name': 'mojo_dbus_echo', | 821 'target_name': 'mojo_dbus_echo', |
| 822 'type': 'loadable_module', | 822 'type': 'loadable_module', |
| 823 'dependencies': [ | 823 'dependencies': [ |
| 824 '../base/base.gyp:base', | 824 '../base/base.gyp:base', |
| 825 'mojo_base.gyp:mojo_application_standalone', | 825 'mojo_base.gyp:mojo_application_standalone', |
| 826 'mojo_base.gyp:mojo_cpp_bindings', | 826 'mojo_base.gyp:mojo_cpp_bindings', |
| 827 'mojo_base.gyp:mojo_utility', | 827 'mojo_base.gyp:mojo_utility', |
| 828 'mojo_echo_bindings', | 828 'mojo_echo_service_bindings', |
| 829 '<(mojo_system_for_loadable_module)', | 829 '<(mojo_system_for_loadable_module)', |
| 830 ], | 830 ], |
| 831 'sources': [ | 831 'sources': [ |
| 832 'examples/dbus_echo/dbus_echo_app.cc', | 832 'examples/dbus_echo/dbus_echo_app.cc', |
| 833 ], | 833 ], |
| 834 }, | 834 }, |
| 835 { |
| 836 'target_name': 'mojo_dbus_echo_service', |
| 837 'type': 'executable', |
| 838 'dependencies': [ |
| 839 '../base/base.gyp:base', |
| 840 '../build/linux/system.gyp:dbus', |
| 841 '../dbus/dbus.gyp:dbus', |
| 842 'mojo_base.gyp:mojo_common_lib', |
| 843 'mojo_base.gyp:mojo_system_impl', |
| 844 'mojo_base.gyp:mojo_application_chromium', |
| 845 'mojo_dbus_service', |
| 846 'mojo_echo_service_bindings', |
| 847 ], |
| 848 'sources': [ |
| 849 'examples/dbus_echo/dbus_echo_service.cc', |
| 850 ], |
| 851 }, |
| 835 ], | 852 ], |
| 853 |
| 836 }], | 854 }], |
| 837 ], | 855 ], |
| 838 } | 856 } |
| OLD | NEW |