Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(870)

Side by Side Diff: mojo/mojo_examples.gypi

Issue 503363004: Remove redundant echo.mojom, verify non-nullables in echo_service.mojom (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/examples/dbus_echo/dbus_echo_service.cc ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « mojo/examples/dbus_echo/dbus_echo_service.cc ('k') | mojo/mojo_services.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698