| 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', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 'mojo_base.gyp:mojo_application_standalone', | |
| 13 'mojo_base.gyp:mojo_cpp_bindings', | |
| 14 'mojo_base.gyp:mojo_utility', | |
| 15 'mojo_echo_service_bindings', | 12 'mojo_echo_service_bindings', |
| 13 'public/mojo_public.gyp:mojo_application_standalone', |
| 14 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 15 'public/mojo_public.gyp:mojo_utility', |
| 16 '<(mojo_system_for_loadable_module)', | 16 '<(mojo_system_for_loadable_module)', |
| 17 ], | 17 ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 'examples/echo/echo_client.cc', | 19 'examples/echo/echo_client.cc', |
| 20 ], | 20 ], |
| 21 }, | 21 }, |
| 22 { | 22 { |
| 23 'target_name': 'package_mojo_echo_client', | 23 'target_name': 'package_mojo_echo_client', |
| 24 'variables': { | 24 'variables': { |
| 25 'app_name': 'mojo_echo_client', | 25 'app_name': 'mojo_echo_client', |
| 26 }, | 26 }, |
| 27 'includes': [ 'build/package_app.gypi' ], | 27 'includes': [ 'build/package_app.gypi' ], |
| 28 }, | 28 }, |
| 29 { | 29 { |
| 30 # GN version: //mojo/examples/echo:bindings | 30 # GN version: //mojo/examples/echo:bindings |
| 31 'target_name': 'mojo_echo_service_bindings', | 31 'target_name': 'mojo_echo_service_bindings', |
| 32 'type': 'static_library', | 32 'type': 'static_library', |
| 33 'sources': [ | 33 'sources': [ |
| 34 'examples/echo/echo_service.mojom', | 34 'examples/echo/echo_service.mojom', |
| 35 ], | 35 ], |
| 36 'dependencies': [ | 36 'dependencies': [ |
| 37 'mojo_base.gyp:mojo_cpp_bindings', | 37 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 38 ], | 38 ], |
| 39 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 39 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 40 'export_dependent_settings': [ | 40 'export_dependent_settings': [ |
| 41 'mojo_base.gyp:mojo_cpp_bindings', | 41 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 42 ], | 42 ], |
| 43 }, | 43 }, |
| 44 { | 44 { |
| 45 # GN version: //mojo/examples/echo:service | 45 # GN version: //mojo/examples/echo:service |
| 46 'target_name': 'mojo_echo_service', | 46 'target_name': 'mojo_echo_service', |
| 47 'type': 'loadable_module', | 47 'type': 'loadable_module', |
| 48 'dependencies': [ | 48 'dependencies': [ |
| 49 'mojo_base.gyp:mojo_application_standalone', | |
| 50 'mojo_base.gyp:mojo_cpp_bindings', | |
| 51 'mojo_base.gyp:mojo_utility', | |
| 52 'mojo_echo_service_bindings', | 49 'mojo_echo_service_bindings', |
| 50 'public/mojo_public.gyp:mojo_application_standalone', |
| 51 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 52 'public/mojo_public.gyp:mojo_utility', |
| 53 '<(mojo_system_for_loadable_module)', | 53 '<(mojo_system_for_loadable_module)', |
| 54 ], | 54 ], |
| 55 'sources': [ | 55 'sources': [ |
| 56 'examples/echo/echo_service.cc', | 56 'examples/echo/echo_service.cc', |
| 57 ], | 57 ], |
| 58 }, | 58 }, |
| 59 { | 59 { |
| 60 'target_name': 'package_mojo_echo_service', | 60 'target_name': 'package_mojo_echo_service', |
| 61 'variables': { | 61 'variables': { |
| 62 'app_name': 'mojo_echo_service', | 62 'app_name': 'mojo_echo_service', |
| 63 }, | 63 }, |
| 64 'includes': [ 'build/package_app.gypi' ], | 64 'includes': [ 'build/package_app.gypi' ], |
| 65 }, | 65 }, |
| 66 { | 66 { |
| 67 # GN version: //mojo/examples/sample_app | 67 # GN version: //mojo/examples/sample_app |
| 68 'target_name': 'mojo_sample_app', | 68 'target_name': 'mojo_sample_app', |
| 69 'type': 'loadable_module', | 69 'type': 'loadable_module', |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 '../base/base.gyp:base', | 71 '../base/base.gyp:base', |
| 72 'mojo_base.gyp:mojo_application_standalone', | |
| 73 'mojo_base.gyp:mojo_cpp_bindings', | |
| 74 'mojo_base.gyp:mojo_utility', | |
| 75 'mojo_geometry_bindings', | 72 'mojo_geometry_bindings', |
| 76 'mojo_gpu_bindings', | 73 'mojo_gpu_bindings', |
| 77 'mojo_native_viewport_bindings', | 74 'mojo_native_viewport_bindings', |
| 75 'public/mojo_public.gyp:mojo_application_standalone', |
| 76 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 77 'public/mojo_public.gyp:mojo_utility', |
| 78 '<(mojo_system_for_loadable_module)', | 78 '<(mojo_system_for_loadable_module)', |
| 79 ], | 79 ], |
| 80 'includes': [ | 80 'includes': [ |
| 81 'mojo_public_gles2_for_loadable_module.gypi', | 81 'mojo_public_gles2_for_loadable_module.gypi', |
| 82 ], | 82 ], |
| 83 'sources': [ | 83 'sources': [ |
| 84 'examples/sample_app/gles2_client_impl.cc', | 84 'examples/sample_app/gles2_client_impl.cc', |
| 85 'examples/sample_app/gles2_client_impl.h', | 85 'examples/sample_app/gles2_client_impl.h', |
| 86 'examples/sample_app/sample_app.cc', | 86 'examples/sample_app/sample_app.cc', |
| 87 'examples/sample_app/spinning_cube.cc', | 87 'examples/sample_app/spinning_cube.cc', |
| 88 'examples/sample_app/spinning_cube.h', | 88 'examples/sample_app/spinning_cube.h', |
| 89 ], | 89 ], |
| 90 }, | 90 }, |
| 91 { | 91 { |
| 92 'target_name': 'package_mojo_sample_app', | 92 'target_name': 'package_mojo_sample_app', |
| 93 'variables': { | 93 'variables': { |
| 94 'app_name': 'mojo_sample_app', | 94 'app_name': 'mojo_sample_app', |
| 95 }, | 95 }, |
| 96 'includes': [ 'build/package_app.gypi' ], | 96 'includes': [ 'build/package_app.gypi' ], |
| 97 }, | 97 }, |
| 98 { | 98 { |
| 99 # GN version: //mojo/examples/apptest:bindings | 99 # GN version: //mojo/examples/apptest:bindings |
| 100 'target_name': 'mojo_example_service_bindings', | 100 'target_name': 'mojo_example_service_bindings', |
| 101 'type': 'static_library', | 101 'type': 'static_library', |
| 102 'sources': [ | 102 'sources': [ |
| 103 'examples/apptest/example_service.mojom', | 103 'examples/apptest/example_service.mojom', |
| 104 ], | 104 ], |
| 105 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 105 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 106 'export_dependent_settings': [ | 106 'export_dependent_settings': [ |
| 107 'mojo_base.gyp:mojo_cpp_bindings', | 107 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 108 ], | 108 ], |
| 109 'dependencies': [ | 109 'dependencies': [ |
| 110 'mojo_base.gyp:mojo_cpp_bindings', | 110 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 111 ], | 111 ], |
| 112 }, | 112 }, |
| 113 { | 113 { |
| 114 # GN version: //mojo/examples/apptest:service | 114 # GN version: //mojo/examples/apptest:service |
| 115 'target_name': 'mojo_example_service', | 115 'target_name': 'mojo_example_service', |
| 116 'type': 'loadable_module', | 116 'type': 'loadable_module', |
| 117 'dependencies': [ | 117 'dependencies': [ |
| 118 'mojo_base.gyp:mojo_application_standalone', # For ApplicationDelegate. | |
| 119 'mojo_base.gyp:mojo_cpp_bindings', # For *.mojom.h | |
| 120 'mojo_example_service_bindings', | 118 'mojo_example_service_bindings', |
| 121 'mojo_base.gyp:mojo_utility', # For RunLoop. | 119 'public/mojo_public.gyp:mojo_application_standalone', # For ApplicationD
elegate. |
| 120 'public/mojo_public.gyp:mojo_cpp_bindings', # For *.mojom.h |
| 121 'public/mojo_public.gyp:mojo_utility', # For RunLoop. |
| 122 '<(mojo_system_for_loadable_module)', | 122 '<(mojo_system_for_loadable_module)', |
| 123 ], | 123 ], |
| 124 'sources': [ | 124 'sources': [ |
| 125 'examples/apptest/example_service_application.cc', | 125 'examples/apptest/example_service_application.cc', |
| 126 'examples/apptest/example_service_application.h', | 126 'examples/apptest/example_service_application.h', |
| 127 'examples/apptest/example_service_impl.cc', | 127 'examples/apptest/example_service_impl.cc', |
| 128 'examples/apptest/example_service_impl.h', | 128 'examples/apptest/example_service_impl.h', |
| 129 ], | 129 ], |
| 130 }, | 130 }, |
| 131 { | 131 { |
| 132 # GN version: //mojo/examples/apptest:apptests | 132 # GN version: //mojo/examples/apptest:apptests |
| 133 'target_name': 'mojo_example_apptests', | 133 'target_name': 'mojo_example_apptests', |
| 134 'type': 'loadable_module', | 134 'type': 'loadable_module', |
| 135 'dependencies': [ | 135 'dependencies': [ |
| 136 '../testing/gtest.gyp:gtest', | 136 '../testing/gtest.gyp:gtest', |
| 137 'mojo_base.gyp:mojo_application_standalone', # For ApplicationDelegate. | |
| 138 'mojo_example_service', | 137 'mojo_example_service', |
| 139 'mojo_example_service_bindings', | 138 'mojo_example_service_bindings', |
| 140 'mojo_base.gyp:mojo_utility', # For RunLoop. | 139 'public/mojo_public.gyp:mojo_application_standalone', # For ApplicationD
elegate. |
| 140 'public/mojo_public.gyp:mojo_utility', # For RunLoop. |
| 141 '<(mojo_system_for_loadable_module)', | 141 '<(mojo_system_for_loadable_module)', |
| 142 ], | 142 ], |
| 143 'sources': [ | 143 'sources': [ |
| 144 'examples/apptest/example_apptest.cc', | 144 'examples/apptest/example_apptest.cc', |
| 145 'examples/apptest/example_client_application.cc', | 145 'examples/apptest/example_client_application.cc', |
| 146 'examples/apptest/example_client_application.h', | 146 'examples/apptest/example_client_application.h', |
| 147 'examples/apptest/example_client_impl.cc', | 147 'examples/apptest/example_client_impl.cc', |
| 148 'examples/apptest/example_client_impl.h', | 148 'examples/apptest/example_client_impl.h', |
| 149 ], | 149 ], |
| 150 }, | 150 }, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 'variables': { | 187 'variables': { |
| 188 'app_name': 'mojo_compositor_app', | 188 'app_name': 'mojo_compositor_app', |
| 189 }, | 189 }, |
| 190 'includes': [ 'build/package_app.gypi' ], | 190 'includes': [ 'build/package_app.gypi' ], |
| 191 }, | 191 }, |
| 192 { | 192 { |
| 193 # GN version: //mojo/examples/wget | 193 # GN version: //mojo/examples/wget |
| 194 'target_name': 'mojo_wget', | 194 'target_name': 'mojo_wget', |
| 195 'type': 'loadable_module', | 195 'type': 'loadable_module', |
| 196 'dependencies': [ | 196 'dependencies': [ |
| 197 'mojo_base.gyp:mojo_application_standalone', | |
| 198 'mojo_base.gyp:mojo_cpp_bindings', | |
| 199 'mojo_base.gyp:mojo_utility', | |
| 200 'mojo_network_bindings', | 197 'mojo_network_bindings', |
| 198 'public/mojo_public.gyp:mojo_application_standalone', # For ApplicationD
elegate. |
| 199 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 200 'public/mojo_public.gyp:mojo_utility', |
| 201 '<(mojo_system_for_loadable_module)', | 201 '<(mojo_system_for_loadable_module)', |
| 202 ], | 202 ], |
| 203 'sources': [ | 203 'sources': [ |
| 204 'examples/wget/wget.cc', | 204 'examples/wget/wget.cc', |
| 205 ], | 205 ], |
| 206 }, | 206 }, |
| 207 { | 207 { |
| 208 # GN version: //mojo/examples/content_handler_demo | 208 # GN version: //mojo/examples/content_handler_demo |
| 209 'target_name': 'mojo_content_handler_demo', | 209 'target_name': 'mojo_content_handler_demo', |
| 210 'type': 'loadable_module', | 210 'type': 'loadable_module', |
| 211 'dependencies': [ | 211 'dependencies': [ |
| 212 'mojo_base.gyp:mojo_application_standalone', | |
| 213 'mojo_base.gyp:mojo_cpp_bindings', | |
| 214 'mojo_base.gyp:mojo_utility', | |
| 215 'mojo_content_handler_bindings', | 212 'mojo_content_handler_bindings', |
| 213 'public/mojo_public.gyp:mojo_application_standalone', # For ApplicationD
elegate. |
| 214 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 215 'public/mojo_public.gyp:mojo_utility', |
| 216 '<(mojo_system_for_loadable_module)', | 216 '<(mojo_system_for_loadable_module)', |
| 217 ], | 217 ], |
| 218 'sources': [ | 218 'sources': [ |
| 219 'examples/content_handler_demo/content_handler_demo.cc', | 219 'examples/content_handler_demo/content_handler_demo.cc', |
| 220 ], | 220 ], |
| 221 }, | 221 }, |
| 222 { | 222 { |
| 223 'target_name': 'package_mojo_wget', | 223 'target_name': 'package_mojo_wget', |
| 224 'variables': { | 224 'variables': { |
| 225 'app_name': 'mojo_wget', | 225 'app_name': 'mojo_wget', |
| 226 }, | 226 }, |
| 227 'includes': [ 'build/package_app.gypi' ], | 227 'includes': [ 'build/package_app.gypi' ], |
| 228 }, | 228 }, |
| 229 { | 229 { |
| 230 # GN version: //mojo/examples/media_viewer:bindings | 230 # GN version: //mojo/examples/media_viewer:bindings |
| 231 'target_name': 'mojo_media_viewer_bindings', | 231 'target_name': 'mojo_media_viewer_bindings', |
| 232 'type': 'static_library', | 232 'type': 'static_library', |
| 233 'sources': [ | 233 'sources': [ |
| 234 'examples/media_viewer/media_viewer.mojom', | 234 'examples/media_viewer/media_viewer.mojom', |
| 235 ], | 235 ], |
| 236 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 236 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 237 'export_dependent_settings': [ | 237 'export_dependent_settings': [ |
| 238 'mojo_base.gyp:mojo_cpp_bindings', | 238 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 239 ], | 239 ], |
| 240 'dependencies': [ | 240 'dependencies': [ |
| 241 'mojo_base.gyp:mojo_cpp_bindings', | 241 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 242 ], | 242 ], |
| 243 }, | 243 }, |
| 244 { | 244 { |
| 245 # GN version: //mojo/examples/png_viewer | 245 # GN version: //mojo/examples/png_viewer |
| 246 'target_name': 'mojo_png_viewer', | 246 'target_name': 'mojo_png_viewer', |
| 247 'type': 'loadable_module', | 247 'type': 'loadable_module', |
| 248 'dependencies': [ | 248 'dependencies': [ |
| 249 '../skia/skia.gyp:skia', | 249 '../skia/skia.gyp:skia', |
| 250 '../ui/gfx/gfx.gyp:gfx', | 250 '../ui/gfx/gfx.gyp:gfx', |
| 251 'mojo_base.gyp:mojo_application_chromium', | 251 'mojo_base.gyp:mojo_application_chromium', |
| 252 'mojo_base.gyp:mojo_cpp_bindings', | |
| 253 'mojo_base.gyp:mojo_utility', | |
| 254 'mojo_content_handler_bindings', | 252 'mojo_content_handler_bindings', |
| 255 'mojo_media_viewer_bindings', | 253 'mojo_media_viewer_bindings', |
| 256 'mojo_network_bindings', | 254 'mojo_network_bindings', |
| 257 'mojo_view_manager_lib', | 255 'mojo_view_manager_lib', |
| 256 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 257 'public/mojo_public.gyp:mojo_utility', |
| 258 '<(mojo_system_for_loadable_module)', | 258 '<(mojo_system_for_loadable_module)', |
| 259 ], | 259 ], |
| 260 'sources': [ | 260 'sources': [ |
| 261 'examples/png_viewer/png_viewer.cc', | 261 'examples/png_viewer/png_viewer.cc', |
| 262 ], | 262 ], |
| 263 }, | 263 }, |
| 264 { | 264 { |
| 265 # GN version: //mojo/examples/pepper_container_app | 265 # GN version: //mojo/examples/pepper_container_app |
| 266 'target_name': 'mojo_pepper_container_app', | 266 'target_name': 'mojo_pepper_container_app', |
| 267 'type': 'loadable_module', | 267 'type': 'loadable_module', |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 }, | 391 }, |
| 392 { | 392 { |
| 393 # GN version: //mojo/examples/surfaces_app:bindings | 393 # GN version: //mojo/examples/surfaces_app:bindings |
| 394 'target_name': 'mojo_surfaces_app_bindings', | 394 'target_name': 'mojo_surfaces_app_bindings', |
| 395 'type': 'static_library', | 395 'type': 'static_library', |
| 396 'sources': [ | 396 'sources': [ |
| 397 'examples/surfaces_app/child.mojom', | 397 'examples/surfaces_app/child.mojom', |
| 398 ], | 398 ], |
| 399 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 399 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 400 'export_dependent_settings': [ | 400 'export_dependent_settings': [ |
| 401 'mojo_base.gyp:mojo_cpp_bindings', | 401 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 402 ], | 402 ], |
| 403 'dependencies': [ | 403 'dependencies': [ |
| 404 'mojo_base.gyp:mojo_cpp_bindings', | |
| 405 'mojo_geometry_bindings', | 404 'mojo_geometry_bindings', |
| 406 'mojo_surfaces_bindings', | 405 'mojo_surfaces_bindings', |
| 406 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 407 ], | 407 ], |
| 408 }, | 408 }, |
| 409 { | 409 { |
| 410 'target_name': 'package_mojo_surfaces_app', | 410 'target_name': 'package_mojo_surfaces_app', |
| 411 'variables': { | 411 'variables': { |
| 412 'app_name': 'mojo_surfaces_app', | 412 'app_name': 'mojo_surfaces_app', |
| 413 }, | 413 }, |
| 414 'includes': [ 'build/package_app.gypi' ], | 414 'includes': [ 'build/package_app.gypi' ], |
| 415 }, | 415 }, |
| 416 { | 416 { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 { | 563 { |
| 564 # GYP version: //mojo/examples/demo_launcher | 564 # GYP version: //mojo/examples/demo_launcher |
| 565 'target_name': 'mojo_demo_launcher', | 565 'target_name': 'mojo_demo_launcher', |
| 566 'type': 'loadable_module', | 566 'type': 'loadable_module', |
| 567 'dependencies': [ | 567 'dependencies': [ |
| 568 '../base/base.gyp:base', | 568 '../base/base.gyp:base', |
| 569 '../skia/skia.gyp:skia', | 569 '../skia/skia.gyp:skia', |
| 570 '../ui/gfx/gfx.gyp:gfx', | 570 '../ui/gfx/gfx.gyp:gfx', |
| 571 '../ui/gfx/gfx.gyp:gfx_geometry', | 571 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 572 'mojo_base.gyp:mojo_application_chromium', | 572 'mojo_base.gyp:mojo_application_chromium', |
| 573 'mojo_base.gyp:mojo_cpp_bindings', | |
| 574 'mojo_base.gyp:mojo_utility', | |
| 575 'mojo_geometry_bindings', | 573 'mojo_geometry_bindings', |
| 576 'mojo_view_manager_bindings', | 574 'mojo_view_manager_bindings', |
| 577 'mojo_view_manager_lib', | 575 'mojo_view_manager_lib', |
| 576 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 577 'public/mojo_public.gyp:mojo_utility', |
| 578 '<(mojo_system_for_loadable_module)', | 578 '<(mojo_system_for_loadable_module)', |
| 579 ], | 579 ], |
| 580 'includes': [ | 580 'includes': [ |
| 581 'mojo_public_gles2_for_loadable_module.gypi', | 581 'mojo_public_gles2_for_loadable_module.gypi', |
| 582 ], | 582 ], |
| 583 'sources': [ | 583 'sources': [ |
| 584 'examples/demo_launcher/demo_launcher.cc', | 584 'examples/demo_launcher/demo_launcher.cc', |
| 585 ], | 585 ], |
| 586 }, | 586 }, |
| 587 { | 587 { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 626 }, | 626 }, |
| 627 { | 627 { |
| 628 # GYP version: //mojo/examples/keyboard:bindings | 628 # GYP version: //mojo/examples/keyboard:bindings |
| 629 'target_name': 'mojo_keyboard_bindings', | 629 'target_name': 'mojo_keyboard_bindings', |
| 630 'type': 'static_library', | 630 'type': 'static_library', |
| 631 'sources': [ | 631 'sources': [ |
| 632 'examples/keyboard/keyboard.mojom', | 632 'examples/keyboard/keyboard.mojom', |
| 633 ], | 633 ], |
| 634 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 634 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 635 'export_dependent_settings': [ | 635 'export_dependent_settings': [ |
| 636 'mojo_base.gyp:mojo_cpp_bindings', | 636 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 637 ], | 637 ], |
| 638 'dependencies': [ | 638 'dependencies': [ |
| 639 'mojo_base.gyp:mojo_cpp_bindings', | 639 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 640 ], | 640 ], |
| 641 }, | 641 }, |
| 642 { | 642 { |
| 643 # GN version: //mojo/examples/window_manager:bindings | 643 # GN version: //mojo/examples/window_manager:bindings |
| 644 'target_name': 'mojo_window_manager_bindings', | 644 'target_name': 'mojo_window_manager_bindings', |
| 645 'type': 'static_library', | 645 'type': 'static_library', |
| 646 'sources': [ | 646 'sources': [ |
| 647 'examples/window_manager/window_manager.mojom', | 647 'examples/window_manager/window_manager.mojom', |
| 648 ], | 648 ], |
| 649 'dependencies': [ | 649 'dependencies': [ |
| 650 'mojo_base.gyp:mojo_cpp_bindings', | |
| 651 'mojo_geometry_bindings', | 650 'mojo_geometry_bindings', |
| 651 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 652 ], | 652 ], |
| 653 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 653 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 654 'export_dependent_settings': [ | 654 'export_dependent_settings': [ |
| 655 'mojo_base.gyp:mojo_cpp_bindings', | 655 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 656 ], | 656 ], |
| 657 }, | 657 }, |
| 658 { | 658 { |
| 659 # GN version: //mojo/examples/window_manager | 659 # GN version: //mojo/examples/window_manager |
| 660 'target_name': 'mojo_window_manager', | 660 'target_name': 'mojo_window_manager', |
| 661 'type': 'loadable_module', | 661 'type': 'loadable_module', |
| 662 'dependencies': [ | 662 'dependencies': [ |
| 663 '../base/base.gyp:base', | 663 '../base/base.gyp:base', |
| 664 '../ui/aura/aura.gyp:aura', | 664 '../ui/aura/aura.gyp:aura', |
| 665 '../ui/base/ui_base.gyp:ui_base', | 665 '../ui/base/ui_base.gyp:ui_base', |
| 666 '../ui/gfx/gfx.gyp:gfx', | 666 '../ui/gfx/gfx.gyp:gfx', |
| 667 '../ui/gfx/gfx.gyp:gfx_geometry', | 667 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 668 '../ui/resources/ui_resources.gyp:ui_resources', | 668 '../ui/resources/ui_resources.gyp:ui_resources', |
| 669 '../ui/resources/ui_resources.gyp:ui_test_pak', | 669 '../ui/resources/ui_resources.gyp:ui_test_pak', |
| 670 '../ui/views/views.gyp:views', | 670 '../ui/views/views.gyp:views', |
| 671 '../ui/wm/wm.gyp:wm', | 671 '../ui/wm/wm.gyp:wm', |
| 672 'mojo_aura_support', |
| 672 'mojo_base.gyp:mojo_application_chromium', | 673 'mojo_base.gyp:mojo_application_chromium', |
| 673 'mojo_base.gyp:mojo_cpp_bindings', | |
| 674 'mojo_base.gyp:mojo_utility', | |
| 675 'mojo_aura_support', | |
| 676 'mojo_core_window_manager_lib', | 674 'mojo_core_window_manager_lib', |
| 677 'mojo_geometry_bindings', | 675 'mojo_geometry_bindings', |
| 678 'mojo_geometry_lib', | 676 'mojo_geometry_lib', |
| 679 'mojo_input_events_lib', | 677 'mojo_input_events_lib', |
| 680 'mojo_keyboard_bindings', | 678 'mojo_keyboard_bindings', |
| 681 'mojo_navigation_bindings', | 679 'mojo_navigation_bindings', |
| 682 'mojo_view_manager_lib', | 680 'mojo_view_manager_lib', |
| 683 'mojo_views_support', | 681 'mojo_views_support', |
| 684 'mojo_window_manager_bindings', | 682 'mojo_window_manager_bindings', |
| 683 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 684 'public/mojo_public.gyp:mojo_utility', |
| 685 '<(mojo_system_for_loadable_module)', | 685 '<(mojo_system_for_loadable_module)', |
| 686 ], | 686 ], |
| 687 'includes': [ | 687 'includes': [ |
| 688 'mojo_public_gles2_for_loadable_module.gypi', | 688 'mojo_public_gles2_for_loadable_module.gypi', |
| 689 ], | 689 ], |
| 690 'sources': [ | 690 'sources': [ |
| 691 'examples/window_manager/debug_panel.h', | 691 'examples/window_manager/debug_panel.h', |
| 692 'examples/window_manager/debug_panel.cc', | 692 'examples/window_manager/debug_panel.cc', |
| 693 'examples/window_manager/window_manager.cc', | 693 'examples/window_manager/window_manager.cc', |
| 694 ], | 694 ], |
| 695 }, | 695 }, |
| 696 { | 696 { |
| 697 # GN version: //mojo/examples/embedded_app | 697 # GN version: //mojo/examples/embedded_app |
| 698 'target_name': 'mojo_embedded_app', | 698 'target_name': 'mojo_embedded_app', |
| 699 'type': 'loadable_module', | 699 'type': 'loadable_module', |
| 700 'dependencies': [ | 700 'dependencies': [ |
| 701 '../base/base.gyp:base', | 701 '../base/base.gyp:base', |
| 702 '../ui/gfx/gfx.gyp:gfx_geometry', | 702 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 703 '../url/url.gyp:url_lib', | 703 '../url/url.gyp:url_lib', |
| 704 'mojo_base.gyp:mojo_application_chromium', | 704 'mojo_base.gyp:mojo_application_chromium', |
| 705 'mojo_base.gyp:mojo_cpp_bindings', | |
| 706 'mojo_base.gyp:mojo_utility', | |
| 707 'mojo_geometry_bindings', | 705 'mojo_geometry_bindings', |
| 708 'mojo_navigation_bindings', | 706 'mojo_navigation_bindings', |
| 709 'mojo_view_manager_lib', | 707 'mojo_view_manager_lib', |
| 710 'mojo_window_manager_bindings', | 708 'mojo_window_manager_bindings', |
| 709 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 710 'public/mojo_public.gyp:mojo_utility', |
| 711 '<(mojo_system_for_loadable_module)', | 711 '<(mojo_system_for_loadable_module)', |
| 712 ], | 712 ], |
| 713 'includes': [ | 713 'includes': [ |
| 714 'mojo_public_gles2_for_loadable_module.gypi', | 714 'mojo_public_gles2_for_loadable_module.gypi', |
| 715 ], | 715 ], |
| 716 'sources': [ | 716 'sources': [ |
| 717 'examples/embedded_app/embedded_app.cc', | 717 'examples/embedded_app/embedded_app.cc', |
| 718 ], | 718 ], |
| 719 }, | 719 }, |
| 720 { | 720 { |
| 721 # GN version: //mojo/examples/nesting_app | 721 # GN version: //mojo/examples/nesting_app |
| 722 'target_name': 'mojo_nesting_app', | 722 'target_name': 'mojo_nesting_app', |
| 723 'type': 'loadable_module', | 723 'type': 'loadable_module', |
| 724 'dependencies': [ | 724 'dependencies': [ |
| 725 '../base/base.gyp:base', | 725 '../base/base.gyp:base', |
| 726 '../ui/gfx/gfx.gyp:gfx_geometry', | 726 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 727 '../url/url.gyp:url_lib', | 727 '../url/url.gyp:url_lib', |
| 728 'mojo_base.gyp:mojo_application_chromium', | 728 'mojo_base.gyp:mojo_application_chromium', |
| 729 'mojo_base.gyp:mojo_cpp_bindings', | |
| 730 'mojo_base.gyp:mojo_utility', | |
| 731 'mojo_geometry_bindings', | 729 'mojo_geometry_bindings', |
| 732 'mojo_navigation_bindings', | 730 'mojo_navigation_bindings', |
| 733 'mojo_view_manager_lib', | 731 'mojo_view_manager_lib', |
| 734 'mojo_window_manager_bindings', | 732 'mojo_window_manager_bindings', |
| 733 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 734 'public/mojo_public.gyp:mojo_utility', |
| 735 '<(mojo_system_for_loadable_module)', | 735 '<(mojo_system_for_loadable_module)', |
| 736 ], | 736 ], |
| 737 'includes': [ | 737 'includes': [ |
| 738 'mojo_public_gles2_for_loadable_module.gypi', | 738 'mojo_public_gles2_for_loadable_module.gypi', |
| 739 ], | 739 ], |
| 740 'sources': [ | 740 'sources': [ |
| 741 'examples/nesting_app/nesting_app.cc', | 741 'examples/nesting_app/nesting_app.cc', |
| 742 ], | 742 ], |
| 743 }, | 743 }, |
| 744 { | 744 { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 ], | 799 ], |
| 800 }, | 800 }, |
| 801 { | 801 { |
| 802 # GN version: //mojo/examples/wm_flow:embedder_bindings | 802 # GN version: //mojo/examples/wm_flow:embedder_bindings |
| 803 'target_name': 'mojo_wm_flow_embedder_bindings', | 803 'target_name': 'mojo_wm_flow_embedder_bindings', |
| 804 'type': 'static_library', | 804 'type': 'static_library', |
| 805 'sources': [ | 805 'sources': [ |
| 806 'examples/wm_flow/app/embedder.mojom', | 806 'examples/wm_flow/app/embedder.mojom', |
| 807 ], | 807 ], |
| 808 'dependencies': [ | 808 'dependencies': [ |
| 809 'mojo_base.gyp:mojo_cpp_bindings', | 809 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 810 ], | 810 ], |
| 811 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 811 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 812 'export_dependent_settings': [ | 812 'export_dependent_settings': [ |
| 813 'mojo_base.gyp:mojo_cpp_bindings', | 813 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 814 ], | 814 ], |
| 815 }, | 815 }, |
| 816 { | 816 { |
| 817 # GN version: //mojo/examples/wm_flow:embeddee_bindings | 817 # GN version: //mojo/examples/wm_flow:embeddee_bindings |
| 818 'target_name': 'mojo_wm_flow_embeddee_bindings', | 818 'target_name': 'mojo_wm_flow_embeddee_bindings', |
| 819 'type': 'static_library', | 819 'type': 'static_library', |
| 820 'sources': [ | 820 'sources': [ |
| 821 'examples/wm_flow/embedded/embeddee.mojom', | 821 'examples/wm_flow/embedded/embeddee.mojom', |
| 822 ], | 822 ], |
| 823 'dependencies': [ | 823 'dependencies': [ |
| 824 'mojo_base.gyp:mojo_cpp_bindings', | 824 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 825 ], | 825 ], |
| 826 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 826 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 827 'export_dependent_settings': [ | 827 'export_dependent_settings': [ |
| 828 'mojo_base.gyp:mojo_cpp_bindings', | 828 'public/mojo_public.gyp:mojo_cpp_bindings', |
| 829 ], | 829 ], |
| 830 }, | 830 }, |
| 831 { | 831 { |
| 832 # GN version: //mojo/examples/wm_flow:app | 832 # GN version: //mojo/examples/wm_flow:app |
| 833 'target_name': 'mojo_wm_flow_app', | 833 'target_name': 'mojo_wm_flow_app', |
| 834 'type': 'loadable_module', | 834 'type': 'loadable_module', |
| 835 'dependencies': [ | 835 'dependencies': [ |
| 836 '../base/base.gyp:base', | 836 '../base/base.gyp:base', |
| 837 'mojo_base.gyp:mojo_application_chromium', | 837 'mojo_base.gyp:mojo_application_chromium', |
| 838 'mojo_core_window_manager_bindings', | 838 'mojo_core_window_manager_bindings', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 859 '<(mojo_system_for_loadable_module)', | 859 '<(mojo_system_for_loadable_module)', |
| 860 ], | 860 ], |
| 861 'sources': [ | 861 'sources': [ |
| 862 'examples/wm_flow/embedded/embedded.cc', | 862 'examples/wm_flow/embedded/embedded.cc', |
| 863 ], | 863 ], |
| 864 }, | 864 }, |
| 865 ], | 865 ], |
| 866 }], | 866 }], |
| 867 ], | 867 ], |
| 868 } | 868 } |
| OLD | NEW |