| 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', | |
| 149 'type': 'loadable_module', | |
| 150 'dependencies': [ | |
| 151 'mojo_base.gyp:mojo_application_standalone', | |
| 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 { | |
| 164 'target_name': 'package_mojo_wget', | 148 'target_name': 'package_mojo_wget', |
| 165 'variables': { | 149 'variables': { |
| 166 'app_name': 'mojo_wget', | 150 'app_name': 'mojo_wget', |
| 167 }, | 151 }, |
| 168 'includes': [ 'build/package_app.gypi' ], | 152 'includes': [ 'build/package_app.gypi' ], |
| 169 }, | 153 }, |
| 170 { | 154 { |
| 171 'target_name': 'mojo_media_viewer_bindings', | 155 'target_name': 'mojo_media_viewer_bindings', |
| 172 'type': 'static_library', | 156 'type': 'static_library', |
| 173 'sources': [ | 157 'sources': [ |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 ], | 721 ], |
| 738 'sources': [ | 722 'sources': [ |
| 739 'examples/dbus_echo/dbus_echo_app.cc', | 723 'examples/dbus_echo/dbus_echo_app.cc', |
| 740 'public/cpp/application/lib/mojo_main_standalone.cc', | 724 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 741 ], | 725 ], |
| 742 }, | 726 }, |
| 743 ], | 727 ], |
| 744 }], | 728 }], |
| 745 ], | 729 ], |
| 746 } | 730 } |
| OLD | NEW |