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_echo_client', | 8 'target_name': 'mojo_echo_client', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
138 'mojo_base.gyp:mojo_utility', | 138 'mojo_base.gyp:mojo_utility', |
139 'mojo_network_bindings', | 139 'mojo_network_bindings', |
140 '<(mojo_system_for_loadable_module)', | 140 '<(mojo_system_for_loadable_module)', |
141 ], | 141 ], |
142 'sources': [ | 142 'sources': [ |
143 'examples/wget/wget.cc', | 143 'examples/wget/wget.cc', |
144 'public/cpp/application/lib/mojo_main_standalone.cc', | 144 'public/cpp/application/lib/mojo_main_standalone.cc', |
145 ], | 145 ], |
146 }, | 146 }, |
147 { | 147 { |
148 'target_name': 'mojo_content_handler_demo', | |
darin (slow to review)
2014/08/06 23:10:01
you probably want to add this to the "mojo" target
Aaron Boodman
2014/08/07 00:03:12
Thanks. done.
| |
149 'type': 'loadable_module', | |
150 'dependencies': [ | |
151 'mojo_base.gyp:mojo_application', | |
152 'mojo_base.gyp:mojo_cpp_bindings', | |
153 'mojo_base.gyp:mojo_environment_standalone', | |
154 'mojo_base.gyp:mojo_utility', | |
155 'mojo_content_handler_bindings', | |
156 '<(mojo_system_for_loadable_module)', | |
157 ], | |
158 'sources': [ | |
159 'examples/content_handler_demo/content_handler_demo.cc', | |
160 'public/cpp/application/lib/mojo_main_standalone.cc', | |
161 ], | |
162 }, | |
163 { | |
148 'target_name': 'package_mojo_wget', | 164 'target_name': 'package_mojo_wget', |
149 'variables': { | 165 'variables': { |
150 'app_name': 'mojo_wget', | 166 'app_name': 'mojo_wget', |
151 }, | 167 }, |
152 'includes': [ 'build/package_app.gypi' ], | 168 'includes': [ 'build/package_app.gypi' ], |
153 }, | 169 }, |
154 { | 170 { |
155 'target_name': 'mojo_media_viewer_bindings', | 171 'target_name': 'mojo_media_viewer_bindings', |
156 'type': 'static_library', | 172 'type': 'static_library', |
157 'sources': [ | 173 'sources': [ |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
721 ], | 737 ], |
722 'sources': [ | 738 'sources': [ |
723 'examples/dbus_echo/dbus_echo_app.cc', | 739 'examples/dbus_echo/dbus_echo_app.cc', |
724 'public/cpp/application/lib/mojo_main_standalone.cc', | 740 'public/cpp/application/lib/mojo_main_standalone.cc', |
725 ], | 741 ], |
726 }, | 742 }, |
727 ], | 743 ], |
728 }], | 744 }], |
729 ], | 745 ], |
730 } | 746 } |
OLD | NEW |