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': 'loadable_module', | 9 'type': 'loadable_module', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 'mojo_network_bindings', | 78 'mojo_network_bindings', |
79 'mojo_utility', | 79 'mojo_utility', |
80 '<(mojo_system_for_loadable_module)', | 80 '<(mojo_system_for_loadable_module)', |
81 ], | 81 ], |
82 'sources': [ | 82 'sources': [ |
83 'examples/wget/wget.cc', | 83 'examples/wget/wget.cc', |
84 'public/cpp/application/lib/mojo_main_standalone.cc', | 84 'public/cpp/application/lib/mojo_main_standalone.cc', |
85 ], | 85 ], |
86 }, | 86 }, |
87 { | 87 { |
| 88 'target_name': 'mojo_content_handler_demo', |
| 89 'type': 'loadable_module', |
| 90 'dependencies': [ |
| 91 'mojo_application', |
| 92 'mojo_cpp_bindings', |
| 93 'mojo_environment_standalone', |
| 94 'mojo_utility', |
| 95 '<(mojo_system_for_loadable_module)', |
| 96 ], |
| 97 'sources': [ |
| 98 'examples/content_handler_demo/content_handler_demo.cc', |
| 99 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 100 ], |
| 101 }, |
| 102 { |
88 'target_name': 'package_mojo_wget', | 103 'target_name': 'package_mojo_wget', |
89 'variables': { | 104 'variables': { |
90 'app_name': 'mojo_wget', | 105 'app_name': 'mojo_wget', |
91 }, | 106 }, |
92 'includes': [ 'build/package_app.gypi' ], | 107 'includes': [ 'build/package_app.gypi' ], |
93 }, | 108 }, |
94 { | 109 { |
95 'target_name': 'mojo_media_viewer_bindings', | 110 'target_name': 'mojo_media_viewer_bindings', |
96 'type': 'static_library', | 111 'type': 'static_library', |
97 'sources': [ | 112 'sources': [ |
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
659 ], | 674 ], |
660 'sources': [ | 675 'sources': [ |
661 'examples/dbus_echo/dbus_echo_app.cc', | 676 'examples/dbus_echo/dbus_echo_app.cc', |
662 'public/cpp/application/lib/mojo_main_standalone.cc', | 677 'public/cpp/application/lib/mojo_main_standalone.cc', |
663 ], | 678 ], |
664 }, | 679 }, |
665 ], | 680 ], |
666 }], | 681 }], |
667 ], | 682 ], |
668 } | 683 } |
OLD | NEW |