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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 ], | 149 ], |
150 }, | 150 }, |
151 { | 151 { |
152 'target_name': 'package_mojo_example_apptests', | 152 'target_name': 'package_mojo_example_apptests', |
153 'variables': { | 153 'variables': { |
154 'app_name': 'mojo_example_apptests', | 154 'app_name': 'mojo_example_apptests', |
155 }, | 155 }, |
156 'includes': [ 'build/package_app.gypi' ], | 156 'includes': [ 'build/package_app.gypi' ], |
157 }, | 157 }, |
158 { | 158 { |
159 # GN version: //mojo/examples/compositor_app | |
160 'target_name': 'mojo_compositor_app', | |
161 'type': 'loadable_module', | |
162 'dependencies': [ | |
163 '../base/base.gyp:base', | |
164 '../cc/cc.gyp:cc', | |
165 '../ui/gfx/gfx.gyp:gfx', | |
166 '../ui/gfx/gfx.gyp:gfx_geometry', | |
167 'mojo_base.gyp:mojo_application_chromium', | |
168 'mojo_base.gyp:mojo_common_lib', | |
169 'mojo_cc_support', | |
170 'mojo_geometry_lib', | |
171 'services/public/mojo_services_public.gyp:mojo_geometry_bindings', | |
172 'services/public/mojo_services_public.gyp:mojo_gpu_bindings', | |
173 'services/public/mojo_services_public.gyp:mojo_native_viewport_bindings'
, | |
174 '<(mojo_system_for_loadable_module)', | |
175 ], | |
176 'includes': [ | |
177 'mojo_public_gles2_for_loadable_module.gypi', | |
178 ], | |
179 'sources': [ | |
180 'examples/compositor_app/compositor_app.cc', | |
181 'examples/compositor_app/compositor_host.cc', | |
182 'examples/compositor_app/compositor_host.h', | |
183 ], | |
184 }, | |
185 { | |
186 'target_name': 'package_mojo_compositor_app', | |
187 'variables': { | |
188 'app_name': 'mojo_compositor_app', | |
189 }, | |
190 'includes': [ 'build/package_app.gypi' ], | |
191 }, | |
192 { | |
193 # GN version: //mojo/examples/http_server | 159 # GN version: //mojo/examples/http_server |
194 'target_name': 'mojo_http_server', | 160 'target_name': 'mojo_http_server', |
195 'type': 'loadable_module', | 161 'type': 'loadable_module', |
196 'dependencies': [ | 162 'dependencies': [ |
197 '../base/base.gyp:base', | 163 '../base/base.gyp:base', |
198 'public/mojo_public.gyp:mojo_application_standalone', | 164 'public/mojo_public.gyp:mojo_application_standalone', |
199 'public/mojo_public.gyp:mojo_cpp_bindings', | 165 'public/mojo_public.gyp:mojo_cpp_bindings', |
200 'public/mojo_public.gyp:mojo_utility', | 166 'public/mojo_public.gyp:mojo_utility', |
201 'services/public/mojo_services_public.gyp:mojo_network_bindings', | 167 'services/public/mojo_services_public.gyp:mojo_network_bindings', |
202 '<(mojo_system_for_loadable_module)', | 168 '<(mojo_system_for_loadable_module)', |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 '<(mojo_system_for_loadable_module)', | 887 '<(mojo_system_for_loadable_module)', |
922 ], | 888 ], |
923 'sources': [ | 889 'sources': [ |
924 'examples/wm_flow/embedded/embedded.cc', | 890 'examples/wm_flow/embedded/embedded.cc', |
925 ], | 891 ], |
926 }, | 892 }, |
927 ], | 893 ], |
928 }], | 894 }], |
929 ], | 895 ], |
930 } | 896 } |
OLD | NEW |