| 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': [ |
| 11 'mojo_base.gyp:mojo_application_standalone', | 11 'mojo_base.gyp:mojo_application', |
| 12 'mojo_base.gyp:mojo_cpp_bindings', | 12 'mojo_base.gyp:mojo_cpp_bindings', |
| 13 'mojo_base.gyp:mojo_environment_standalone', | 13 'mojo_base.gyp:mojo_environment_standalone', |
| 14 'mojo_base.gyp:mojo_utility', | 14 'mojo_base.gyp:mojo_utility', |
| 15 'mojo_echo_service_bindings', | 15 'mojo_echo_service_bindings', |
| 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 'public/cpp/application/lib/mojo_main_standalone.cc', | 20 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 21 ], | 21 ], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 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 'mojo_base.gyp:mojo_cpp_bindings', |
| 42 ], | 42 ], |
| 43 }, | 43 }, |
| 44 { | 44 { |
| 45 'target_name': 'mojo_echo_service', | 45 'target_name': 'mojo_echo_service', |
| 46 'type': 'loadable_module', | 46 'type': 'loadable_module', |
| 47 'dependencies': [ | 47 'dependencies': [ |
| 48 'mojo_base.gyp:mojo_application_standalone', | 48 'mojo_base.gyp:mojo_application', |
| 49 'mojo_base.gyp:mojo_cpp_bindings', | 49 'mojo_base.gyp:mojo_cpp_bindings', |
| 50 'mojo_base.gyp:mojo_environment_standalone', | 50 'mojo_base.gyp:mojo_environment_standalone', |
| 51 'mojo_base.gyp:mojo_utility', | 51 'mojo_base.gyp:mojo_utility', |
| 52 'mojo_echo_service_bindings', | 52 'mojo_echo_service_bindings', |
| 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 'public/cpp/application/lib/mojo_main_standalone.cc', | 57 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 58 ], | 58 ], |
| 59 }, | 59 }, |
| 60 { | 60 { |
| 61 'target_name': 'package_mojo_echo_service', | 61 'target_name': 'package_mojo_echo_service', |
| 62 'variables': { | 62 'variables': { |
| 63 'app_name': 'mojo_echo_service', | 63 'app_name': 'mojo_echo_service', |
| 64 }, | 64 }, |
| 65 'includes': [ 'build/package_app.gypi' ], | 65 'includes': [ 'build/package_app.gypi' ], |
| 66 }, | 66 }, |
| 67 { | 67 { |
| 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 # TODO(darin): we should not be linking against these libraries! | 71 # TODO(darin): we should not be linking against these libraries! |
| 72 '../ui/events/events.gyp:events', | 72 '../ui/events/events.gyp:events', |
| 73 '../ui/gfx/gfx.gyp:gfx_geometry', | 73 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 74 'mojo_base.gyp:mojo_application_standalone', | 74 'mojo_base.gyp:mojo_application', |
| 75 'mojo_base.gyp:mojo_cpp_bindings', | 75 'mojo_base.gyp:mojo_cpp_bindings', |
| 76 'mojo_base.gyp:mojo_environment_standalone', | 76 'mojo_base.gyp:mojo_environment_standalone', |
| 77 'mojo_base.gyp:mojo_utility', | 77 'mojo_base.gyp:mojo_utility', |
| 78 'mojo_geometry_bindings', | 78 'mojo_geometry_bindings', |
| 79 'mojo_gles2', | 79 'mojo_gles2', |
| 80 'mojo_native_viewport_bindings', | 80 'mojo_native_viewport_bindings', |
| 81 '<(mojo_system_for_loadable_module)', | 81 '<(mojo_system_for_loadable_module)', |
| 82 ], | 82 ], |
| 83 'sources': [ | 83 'sources': [ |
| 84 'examples/sample_app/gles2_client_impl.cc', | 84 'examples/sample_app/gles2_client_impl.cc', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 97 'includes': [ 'build/package_app.gypi' ], | 97 'includes': [ 'build/package_app.gypi' ], |
| 98 }, | 98 }, |
| 99 { | 99 { |
| 100 'target_name': 'mojo_compositor_app', | 100 'target_name': 'mojo_compositor_app', |
| 101 'type': 'loadable_module', | 101 'type': 'loadable_module', |
| 102 'dependencies': [ | 102 'dependencies': [ |
| 103 '../base/base.gyp:base', | 103 '../base/base.gyp:base', |
| 104 '../cc/cc.gyp:cc', | 104 '../cc/cc.gyp:cc', |
| 105 '../ui/gfx/gfx.gyp:gfx', | 105 '../ui/gfx/gfx.gyp:gfx', |
| 106 '../ui/gfx/gfx.gyp:gfx_geometry', | 106 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 107 'mojo_base.gyp:mojo_application_chromium', | 107 'mojo_base.gyp:mojo_application', |
| 108 'mojo_base.gyp:mojo_common_lib', | 108 'mojo_base.gyp:mojo_common_lib', |
| 109 'mojo_base.gyp:mojo_environment_chromium', | 109 'mojo_base.gyp:mojo_environment_chromium', |
| 110 'mojo_cc_support', | 110 'mojo_cc_support', |
| 111 'mojo_geometry_bindings', | 111 'mojo_geometry_bindings', |
| 112 'mojo_geometry_lib', | 112 'mojo_geometry_lib', |
| 113 'mojo_gles2', | 113 'mojo_gles2', |
| 114 'mojo_native_viewport_bindings', | 114 'mojo_native_viewport_bindings', |
| 115 '<(mojo_system_for_loadable_module)', | 115 '<(mojo_system_for_loadable_module)', |
| 116 ], | 116 ], |
| 117 'sources': [ | 117 'sources': [ |
| 118 'examples/compositor_app/compositor_app.cc', | 118 'examples/compositor_app/compositor_app.cc', |
| 119 'examples/compositor_app/compositor_host.cc', | 119 'examples/compositor_app/compositor_host.cc', |
| 120 'examples/compositor_app/compositor_host.h', | 120 'examples/compositor_app/compositor_host.h', |
| 121 'public/cpp/application/lib/mojo_main_chromium.cc', | 121 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 122 ], | 122 ], |
| 123 }, | 123 }, |
| 124 { | 124 { |
| 125 'target_name': 'package_mojo_compositor_app', | 125 'target_name': 'package_mojo_compositor_app', |
| 126 'variables': { | 126 'variables': { |
| 127 'app_name': 'mojo_compositor_app', | 127 'app_name': 'mojo_compositor_app', |
| 128 }, | 128 }, |
| 129 'includes': [ 'build/package_app.gypi' ], | 129 'includes': [ 'build/package_app.gypi' ], |
| 130 }, | 130 }, |
| 131 { | 131 { |
| 132 'target_name': 'mojo_wget', | 132 'target_name': 'mojo_wget', |
| 133 'type': 'loadable_module', | 133 'type': 'loadable_module', |
| 134 'dependencies': [ | 134 'dependencies': [ |
| 135 'mojo_base.gyp:mojo_application_standalone', | 135 'mojo_base.gyp:mojo_application', |
| 136 'mojo_base.gyp:mojo_cpp_bindings', | 136 'mojo_base.gyp:mojo_cpp_bindings', |
| 137 'mojo_base.gyp:mojo_environment_standalone', | 137 'mojo_base.gyp:mojo_environment_standalone', |
| 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 ], |
| (...skipping 18 matching lines...) Expand all Loading... |
| 164 'dependencies': [ | 164 'dependencies': [ |
| 165 'mojo_base.gyp:mojo_cpp_bindings', | 165 'mojo_base.gyp:mojo_cpp_bindings', |
| 166 ], | 166 ], |
| 167 }, | 167 }, |
| 168 { | 168 { |
| 169 'target_name': 'mojo_png_viewer', | 169 'target_name': 'mojo_png_viewer', |
| 170 'type': 'loadable_module', | 170 'type': 'loadable_module', |
| 171 'dependencies': [ | 171 'dependencies': [ |
| 172 '../skia/skia.gyp:skia', | 172 '../skia/skia.gyp:skia', |
| 173 '../ui/gfx/gfx.gyp:gfx', | 173 '../ui/gfx/gfx.gyp:gfx', |
| 174 'mojo_base.gyp:mojo_application_chromium', | 174 'mojo_base.gyp:mojo_application', |
| 175 'mojo_base.gyp:mojo_cpp_bindings', | 175 'mojo_base.gyp:mojo_cpp_bindings', |
| 176 'mojo_base.gyp:mojo_environment_chromium', | 176 'mojo_base.gyp:mojo_environment_chromium', |
| 177 'mojo_base.gyp:mojo_utility', | 177 'mojo_base.gyp:mojo_utility', |
| 178 'mojo_media_viewer_bindings', | 178 'mojo_media_viewer_bindings', |
| 179 'mojo_navigation_bindings', | 179 'mojo_navigation_bindings', |
| 180 'mojo_network_bindings', | 180 'mojo_network_bindings', |
| 181 'mojo_launcher_bindings', | 181 'mojo_launcher_bindings', |
| 182 'mojo_view_manager_lib', | 182 'mojo_view_manager_lib', |
| 183 '<(mojo_system_for_loadable_module)', | 183 '<(mojo_system_for_loadable_module)', |
| 184 ], | 184 ], |
| 185 'sources': [ | 185 'sources': [ |
| 186 'examples/png_viewer/png_viewer.cc', | 186 'examples/png_viewer/png_viewer.cc', |
| 187 'public/cpp/application/lib/mojo_main_chromium.cc', | 187 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 188 ], | 188 ], |
| 189 }, | 189 }, |
| 190 { | 190 { |
| 191 'target_name': 'mojo_pepper_container_app', | 191 'target_name': 'mojo_pepper_container_app', |
| 192 'type': 'loadable_module', | 192 'type': 'loadable_module', |
| 193 'dependencies': [ | 193 'dependencies': [ |
| 194 '../base/base.gyp:base', | 194 '../base/base.gyp:base', |
| 195 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 195 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 196 '../gpu/gpu.gyp:command_buffer_common', | 196 '../gpu/gpu.gyp:command_buffer_common', |
| 197 '../ppapi/ppapi.gyp:ppapi_c', | 197 '../ppapi/ppapi.gyp:ppapi_c', |
| 198 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', | 198 '../ppapi/ppapi_internal.gyp:ppapi_example_gles2_spinning_cube', |
| 199 '../ui/events/events.gyp:events_base', | 199 '../ui/events/events.gyp:events_base', |
| 200 'mojo_base.gyp:mojo_application_chromium', | 200 'mojo_base.gyp:mojo_application', |
| 201 'mojo_base.gyp:mojo_common_lib', | 201 'mojo_base.gyp:mojo_common_lib', |
| 202 'mojo_base.gyp:mojo_environment_chromium', | 202 'mojo_base.gyp:mojo_environment_chromium', |
| 203 'mojo_geometry_bindings', | 203 'mojo_geometry_bindings', |
| 204 'mojo_gles2', | 204 'mojo_gles2', |
| 205 'mojo_native_viewport_bindings', | 205 'mojo_native_viewport_bindings', |
| 206 '<(mojo_system_for_loadable_module)', | 206 '<(mojo_system_for_loadable_module)', |
| 207 ], | 207 ], |
| 208 'defines': [ | 208 'defines': [ |
| 209 # We don't really want to export. We could change how | 209 # We don't really want to export. We could change how |
| 210 # ppapi_{shared,thunk}_export.h are defined to avoid this. | 210 # ppapi_{shared,thunk}_export.h are defined to avoid this. |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 { | 286 { |
| 287 'target_name': 'mojo_surfaces_app', | 287 'target_name': 'mojo_surfaces_app', |
| 288 'type': 'loadable_module', | 288 'type': 'loadable_module', |
| 289 'dependencies': [ | 289 'dependencies': [ |
| 290 '../base/base.gyp:base', | 290 '../base/base.gyp:base', |
| 291 '../cc/cc.gyp:cc', | 291 '../cc/cc.gyp:cc', |
| 292 '../cc/cc.gyp:cc_surfaces', | 292 '../cc/cc.gyp:cc_surfaces', |
| 293 '../skia/skia.gyp:skia', | 293 '../skia/skia.gyp:skia', |
| 294 '../ui/gfx/gfx.gyp:gfx', | 294 '../ui/gfx/gfx.gyp:gfx', |
| 295 '../ui/gfx/gfx.gyp:gfx_geometry', | 295 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 296 'mojo_base.gyp:mojo_application_chromium', | 296 'mojo_base.gyp:mojo_application', |
| 297 'mojo_base.gyp:mojo_common_lib', | 297 'mojo_base.gyp:mojo_common_lib', |
| 298 'mojo_base.gyp:mojo_environment_chromium', | 298 'mojo_base.gyp:mojo_environment_chromium', |
| 299 'mojo_base.gyp:mojo_system_impl', | 299 'mojo_base.gyp:mojo_system_impl', |
| 300 'mojo_geometry_bindings', | 300 'mojo_geometry_bindings', |
| 301 'mojo_geometry_lib', | 301 'mojo_geometry_lib', |
| 302 'mojo_gles2', | 302 'mojo_gles2', |
| 303 'mojo_native_viewport_bindings', | 303 'mojo_native_viewport_bindings', |
| 304 'mojo_surfaces_bindings', | 304 'mojo_surfaces_bindings', |
| 305 'mojo_surfaces_app_bindings', | 305 'mojo_surfaces_app_bindings', |
| 306 'mojo_surfaces_lib', | 306 'mojo_surfaces_lib', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 { | 341 { |
| 342 'target_name': 'mojo_surfaces_child_app', | 342 'target_name': 'mojo_surfaces_child_app', |
| 343 'type': 'loadable_module', | 343 'type': 'loadable_module', |
| 344 'dependencies': [ | 344 'dependencies': [ |
| 345 '../base/base.gyp:base', | 345 '../base/base.gyp:base', |
| 346 '../cc/cc.gyp:cc', | 346 '../cc/cc.gyp:cc', |
| 347 '../cc/cc.gyp:cc_surfaces', | 347 '../cc/cc.gyp:cc_surfaces', |
| 348 '../skia/skia.gyp:skia', | 348 '../skia/skia.gyp:skia', |
| 349 '../ui/gfx/gfx.gyp:gfx', | 349 '../ui/gfx/gfx.gyp:gfx', |
| 350 '../ui/gfx/gfx.gyp:gfx_geometry', | 350 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 351 'mojo_base.gyp:mojo_application_chromium', | 351 'mojo_base.gyp:mojo_application', |
| 352 'mojo_base.gyp:mojo_common_lib', | 352 'mojo_base.gyp:mojo_common_lib', |
| 353 'mojo_base.gyp:mojo_environment_chromium', | 353 'mojo_base.gyp:mojo_environment_chromium', |
| 354 'mojo_base.gyp:mojo_system_impl', | 354 'mojo_base.gyp:mojo_system_impl', |
| 355 'mojo_geometry_bindings', | 355 'mojo_geometry_bindings', |
| 356 'mojo_geometry_lib', | 356 'mojo_geometry_lib', |
| 357 'mojo_surfaces_app_bindings', | 357 'mojo_surfaces_app_bindings', |
| 358 'mojo_surfaces_bindings', | 358 'mojo_surfaces_bindings', |
| 359 'mojo_surfaces_lib', | 359 'mojo_surfaces_lib', |
| 360 '<(mojo_system_for_loadable_module)', | 360 '<(mojo_system_for_loadable_module)', |
| 361 ], | 361 ], |
| (...skipping 14 matching lines...) Expand all Loading... |
| 376 'target_name': 'mojo_aura_demo', | 376 'target_name': 'mojo_aura_demo', |
| 377 'type': 'loadable_module', | 377 'type': 'loadable_module', |
| 378 'dependencies': [ | 378 'dependencies': [ |
| 379 '../base/base.gyp:base', | 379 '../base/base.gyp:base', |
| 380 '../cc/cc.gyp:cc', | 380 '../cc/cc.gyp:cc', |
| 381 '../ui/aura/aura.gyp:aura', | 381 '../ui/aura/aura.gyp:aura', |
| 382 '../ui/base/ui_base.gyp:ui_base', | 382 '../ui/base/ui_base.gyp:ui_base', |
| 383 '../ui/compositor/compositor.gyp:compositor', | 383 '../ui/compositor/compositor.gyp:compositor', |
| 384 '../ui/gfx/gfx.gyp:gfx', | 384 '../ui/gfx/gfx.gyp:gfx', |
| 385 '../ui/gfx/gfx.gyp:gfx_geometry', | 385 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 386 'mojo_base.gyp:mojo_application_chromium', | 386 'mojo_base.gyp:mojo_application', |
| 387 'mojo_base.gyp:mojo_common_lib', | 387 'mojo_base.gyp:mojo_common_lib', |
| 388 'mojo_base.gyp:mojo_environment_chromium', | 388 'mojo_base.gyp:mojo_environment_chromium', |
| 389 'mojo_aura_support', | 389 'mojo_aura_support', |
| 390 'mojo_geometry_bindings', | 390 'mojo_geometry_bindings', |
| 391 'mojo_geometry_lib', | 391 'mojo_geometry_lib', |
| 392 'mojo_view_manager_lib', | 392 'mojo_view_manager_lib', |
| 393 '<(mojo_system_for_loadable_module)', | 393 '<(mojo_system_for_loadable_module)', |
| 394 ], | 394 ], |
| 395 'sources': [ | 395 'sources': [ |
| 396 'examples/aura_demo/aura_demo.cc', | 396 'examples/aura_demo/aura_demo.cc', |
| 397 'public/cpp/application/lib/mojo_main_chromium.cc', | 397 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 398 ], | 398 ], |
| 399 }, | 399 }, |
| 400 { | 400 { |
| 401 'target_name': 'mojo_aura_demo_init', | 401 'target_name': 'mojo_aura_demo_init', |
| 402 'type': 'loadable_module', | 402 'type': 'loadable_module', |
| 403 'dependencies': [ | 403 'dependencies': [ |
| 404 '../base/base.gyp:base', | 404 '../base/base.gyp:base', |
| 405 'mojo_base.gyp:mojo_application_chromium', | 405 'mojo_base.gyp:mojo_application', |
| 406 'mojo_base.gyp:mojo_environment_chromium', | 406 'mojo_base.gyp:mojo_environment_chromium', |
| 407 'mojo_view_manager_bindings', | 407 'mojo_view_manager_bindings', |
| 408 '<(mojo_system_for_loadable_module)', | 408 '<(mojo_system_for_loadable_module)', |
| 409 ], | 409 ], |
| 410 'sources': [ | 410 'sources': [ |
| 411 'examples/aura_demo/view_manager_init.cc', | 411 'examples/aura_demo/view_manager_init.cc', |
| 412 'public/cpp/application/lib/mojo_main_chromium.cc', | 412 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 413 ], | 413 ], |
| 414 }, | 414 }, |
| 415 { | 415 { |
| 416 'target_name': 'mojo_browser', | 416 'target_name': 'mojo_browser', |
| 417 'type': 'loadable_module', | 417 'type': 'loadable_module', |
| 418 'dependencies': [ | 418 'dependencies': [ |
| 419 '../base/base.gyp:base', | 419 '../base/base.gyp:base', |
| 420 '../cc/cc.gyp:cc', | 420 '../cc/cc.gyp:cc', |
| 421 '../third_party/icu/icu.gyp:icui18n', | 421 '../third_party/icu/icu.gyp:icui18n', |
| 422 '../third_party/icu/icu.gyp:icuuc', | 422 '../third_party/icu/icu.gyp:icuuc', |
| 423 '../ui/aura/aura.gyp:aura', | 423 '../ui/aura/aura.gyp:aura', |
| 424 '../ui/base/ui_base.gyp:ui_base', | 424 '../ui/base/ui_base.gyp:ui_base', |
| 425 '../ui/compositor/compositor.gyp:compositor', | 425 '../ui/compositor/compositor.gyp:compositor', |
| 426 '../ui/gfx/gfx.gyp:gfx', | 426 '../ui/gfx/gfx.gyp:gfx', |
| 427 '../ui/gfx/gfx.gyp:gfx_geometry', | 427 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 428 '../ui/resources/ui_resources.gyp:ui_resources', | 428 '../ui/resources/ui_resources.gyp:ui_resources', |
| 429 '../ui/resources/ui_resources.gyp:ui_test_pak', | 429 '../ui/resources/ui_resources.gyp:ui_test_pak', |
| 430 '../ui/views/views.gyp:views', | 430 '../ui/views/views.gyp:views', |
| 431 '../url/url.gyp:url_lib', | 431 '../url/url.gyp:url_lib', |
| 432 'mojo_base.gyp:mojo_application_chromium', | 432 'mojo_base.gyp:mojo_application', |
| 433 'mojo_base.gyp:mojo_common_lib', | 433 'mojo_base.gyp:mojo_common_lib', |
| 434 'mojo_base.gyp:mojo_environment_chromium', | 434 'mojo_base.gyp:mojo_environment_chromium', |
| 435 'mojo_aura_support', | 435 'mojo_aura_support', |
| 436 'mojo_geometry_bindings', | 436 'mojo_geometry_bindings', |
| 437 'mojo_geometry_lib', | 437 'mojo_geometry_lib', |
| 438 'mojo_input_events_lib', | 438 'mojo_input_events_lib', |
| 439 'mojo_navigation_bindings', | 439 'mojo_navigation_bindings', |
| 440 'mojo_views_support', | 440 'mojo_views_support', |
| 441 'mojo_view_manager_bindings', | 441 'mojo_view_manager_bindings', |
| 442 'mojo_view_manager_lib', | 442 'mojo_view_manager_lib', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 457 }, | 457 }, |
| 458 { | 458 { |
| 459 'target_name': 'mojo_demo_launcher', | 459 'target_name': 'mojo_demo_launcher', |
| 460 'type': 'loadable_module', | 460 'type': 'loadable_module', |
| 461 'dependencies': [ | 461 'dependencies': [ |
| 462 '../base/base.gyp:base', | 462 '../base/base.gyp:base', |
| 463 '../skia/skia.gyp:skia', | 463 '../skia/skia.gyp:skia', |
| 464 '../ui/gfx/gfx.gyp:gfx', | 464 '../ui/gfx/gfx.gyp:gfx', |
| 465 '../ui/gfx/gfx.gyp:gfx_geometry', | 465 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 466 '../ui/gl/gl.gyp:gl', | 466 '../ui/gl/gl.gyp:gl', |
| 467 'mojo_base.gyp:mojo_application_chromium', | 467 'mojo_base.gyp:mojo_application', |
| 468 'mojo_base.gyp:mojo_cpp_bindings', | 468 'mojo_base.gyp:mojo_cpp_bindings', |
| 469 'mojo_base.gyp:mojo_environment_chromium', | 469 'mojo_base.gyp:mojo_environment_chromium', |
| 470 'mojo_base.gyp:mojo_utility', | 470 'mojo_base.gyp:mojo_utility', |
| 471 'mojo_geometry_bindings', | 471 'mojo_geometry_bindings', |
| 472 'mojo_gles2', | 472 'mojo_gles2', |
| 473 'mojo_view_manager_bindings', | 473 'mojo_view_manager_bindings', |
| 474 '<(mojo_system_for_loadable_module)', | 474 '<(mojo_system_for_loadable_module)', |
| 475 ], | 475 ], |
| 476 'sources': [ | 476 'sources': [ |
| 477 'examples/demo_launcher/demo_launcher.cc', | 477 'examples/demo_launcher/demo_launcher.cc', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 488 '../third_party/icu/icu.gyp:icuuc', | 488 '../third_party/icu/icu.gyp:icuuc', |
| 489 '../ui/aura/aura.gyp:aura', | 489 '../ui/aura/aura.gyp:aura', |
| 490 '../ui/base/ui_base.gyp:ui_base', | 490 '../ui/base/ui_base.gyp:ui_base', |
| 491 '../ui/compositor/compositor.gyp:compositor', | 491 '../ui/compositor/compositor.gyp:compositor', |
| 492 '../ui/gfx/gfx.gyp:gfx', | 492 '../ui/gfx/gfx.gyp:gfx', |
| 493 '../ui/gfx/gfx.gyp:gfx_geometry', | 493 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 494 '../ui/resources/ui_resources.gyp:ui_resources', | 494 '../ui/resources/ui_resources.gyp:ui_resources', |
| 495 '../ui/resources/ui_resources.gyp:ui_test_pak', | 495 '../ui/resources/ui_resources.gyp:ui_test_pak', |
| 496 '../ui/views/views.gyp:views', | 496 '../ui/views/views.gyp:views', |
| 497 '../url/url.gyp:url_lib', | 497 '../url/url.gyp:url_lib', |
| 498 'mojo_base.gyp:mojo_application_chromium', | 498 'mojo_base.gyp:mojo_application', |
| 499 'mojo_base.gyp:mojo_common_lib', | 499 'mojo_base.gyp:mojo_common_lib', |
| 500 'mojo_base.gyp:mojo_environment_chromium', | 500 'mojo_base.gyp:mojo_environment_chromium', |
| 501 'mojo_aura_support', | 501 'mojo_aura_support', |
| 502 'mojo_geometry_bindings', | 502 'mojo_geometry_bindings', |
| 503 'mojo_geometry_lib', | 503 'mojo_geometry_lib', |
| 504 'mojo_input_events_lib', | 504 'mojo_input_events_lib', |
| 505 'mojo_keyboard_bindings', | 505 'mojo_keyboard_bindings', |
| 506 'mojo_navigation_bindings', | 506 'mojo_navigation_bindings', |
| 507 'mojo_views_support', | 507 'mojo_views_support', |
| 508 'mojo_view_manager_bindings', | 508 'mojo_view_manager_bindings', |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 'dependencies': [ | 554 'dependencies': [ |
| 555 '../base/base.gyp:base', | 555 '../base/base.gyp:base', |
| 556 '../ui/aura/aura.gyp:aura', | 556 '../ui/aura/aura.gyp:aura', |
| 557 '../ui/base/ui_base.gyp:ui_base', | 557 '../ui/base/ui_base.gyp:ui_base', |
| 558 '../ui/gfx/gfx.gyp:gfx', | 558 '../ui/gfx/gfx.gyp:gfx', |
| 559 '../ui/gfx/gfx.gyp:gfx_geometry', | 559 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 560 '../ui/gl/gl.gyp:gl', | 560 '../ui/gl/gl.gyp:gl', |
| 561 '../ui/resources/ui_resources.gyp:ui_resources', | 561 '../ui/resources/ui_resources.gyp:ui_resources', |
| 562 '../ui/resources/ui_resources.gyp:ui_test_pak', | 562 '../ui/resources/ui_resources.gyp:ui_test_pak', |
| 563 '../ui/views/views.gyp:views', | 563 '../ui/views/views.gyp:views', |
| 564 'mojo_base.gyp:mojo_application_chromium', | 564 'mojo_base.gyp:mojo_application', |
| 565 'mojo_base.gyp:mojo_cpp_bindings', | 565 'mojo_base.gyp:mojo_cpp_bindings', |
| 566 'mojo_base.gyp:mojo_utility', | 566 'mojo_base.gyp:mojo_utility', |
| 567 'mojo_base.gyp:mojo_environment_chromium', | 567 'mojo_base.gyp:mojo_environment_chromium', |
| 568 'mojo_aura_support', | 568 'mojo_aura_support', |
| 569 'mojo_geometry_bindings', | 569 'mojo_geometry_bindings', |
| 570 'mojo_geometry_lib', | 570 'mojo_geometry_lib', |
| 571 'mojo_gles2', | 571 'mojo_gles2', |
| 572 'mojo_input_events_lib', | 572 'mojo_input_events_lib', |
| 573 'mojo_keyboard_bindings', | 573 'mojo_keyboard_bindings', |
| 574 'mojo_launcher_bindings', | 574 'mojo_launcher_bindings', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 586 ], | 586 ], |
| 587 }, | 587 }, |
| 588 { | 588 { |
| 589 'target_name': 'mojo_embedded_app', | 589 'target_name': 'mojo_embedded_app', |
| 590 'type': 'loadable_module', | 590 'type': 'loadable_module', |
| 591 'dependencies': [ | 591 'dependencies': [ |
| 592 '../base/base.gyp:base', | 592 '../base/base.gyp:base', |
| 593 '../ui/gfx/gfx.gyp:gfx_geometry', | 593 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 594 '../ui/gl/gl.gyp:gl', | 594 '../ui/gl/gl.gyp:gl', |
| 595 '../url/url.gyp:url_lib', | 595 '../url/url.gyp:url_lib', |
| 596 'mojo_base.gyp:mojo_application_chromium', | 596 'mojo_base.gyp:mojo_application', |
| 597 'mojo_base.gyp:mojo_cpp_bindings', | 597 'mojo_base.gyp:mojo_cpp_bindings', |
| 598 'mojo_base.gyp:mojo_environment_chromium', | 598 'mojo_base.gyp:mojo_environment_chromium', |
| 599 'mojo_base.gyp:mojo_utility', | 599 'mojo_base.gyp:mojo_utility', |
| 600 'mojo_geometry_bindings', | 600 'mojo_geometry_bindings', |
| 601 'mojo_gles2', | 601 'mojo_gles2', |
| 602 'mojo_navigation_bindings', | 602 'mojo_navigation_bindings', |
| 603 'mojo_view_manager_lib', | 603 'mojo_view_manager_lib', |
| 604 'mojo_window_manager_bindings', | 604 'mojo_window_manager_bindings', |
| 605 '<(mojo_system_for_loadable_module)', | 605 '<(mojo_system_for_loadable_module)', |
| 606 ], | 606 ], |
| 607 'sources': [ | 607 'sources': [ |
| 608 'examples/embedded_app/embedded_app.cc', | 608 'examples/embedded_app/embedded_app.cc', |
| 609 'public/cpp/application/lib/mojo_main_chromium.cc', | 609 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 610 ], | 610 ], |
| 611 }, | 611 }, |
| 612 { | 612 { |
| 613 'target_name': 'mojo_nesting_app', | 613 'target_name': 'mojo_nesting_app', |
| 614 'type': 'loadable_module', | 614 'type': 'loadable_module', |
| 615 'dependencies': [ | 615 'dependencies': [ |
| 616 '../base/base.gyp:base', | 616 '../base/base.gyp:base', |
| 617 '../ui/gfx/gfx.gyp:gfx_geometry', | 617 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 618 '../ui/gl/gl.gyp:gl', | 618 '../ui/gl/gl.gyp:gl', |
| 619 '../url/url.gyp:url_lib', | 619 '../url/url.gyp:url_lib', |
| 620 'mojo_base.gyp:mojo_application_chromium', | 620 'mojo_base.gyp:mojo_application', |
| 621 'mojo_base.gyp:mojo_cpp_bindings', | 621 'mojo_base.gyp:mojo_cpp_bindings', |
| 622 'mojo_base.gyp:mojo_environment_chromium', | 622 'mojo_base.gyp:mojo_environment_chromium', |
| 623 'mojo_base.gyp:mojo_utility', | 623 'mojo_base.gyp:mojo_utility', |
| 624 'mojo_geometry_bindings', | 624 'mojo_geometry_bindings', |
| 625 'mojo_gles2', | 625 'mojo_gles2', |
| 626 'mojo_navigation_bindings', | 626 'mojo_navigation_bindings', |
| 627 'mojo_view_manager_lib', | 627 'mojo_view_manager_lib', |
| 628 'mojo_window_manager_bindings', | 628 'mojo_window_manager_bindings', |
| 629 '<(mojo_system_for_loadable_module)', | 629 '<(mojo_system_for_loadable_module)', |
| 630 ], | 630 ], |
| 631 'sources': [ | 631 'sources': [ |
| 632 'examples/nesting_app/nesting_app.cc', | 632 'examples/nesting_app/nesting_app.cc', |
| 633 'public/cpp/application/lib/mojo_main_chromium.cc', | 633 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 634 ], | 634 ], |
| 635 }, | 635 }, |
| 636 { | 636 { |
| 637 'target_name': 'mojo_media_viewer', | 637 'target_name': 'mojo_media_viewer', |
| 638 'type': 'loadable_module', | 638 'type': 'loadable_module', |
| 639 'dependencies': [ | 639 'dependencies': [ |
| 640 '../base/base.gyp:base', | 640 '../base/base.gyp:base', |
| 641 '../skia/skia.gyp:skia', | 641 '../skia/skia.gyp:skia', |
| 642 '../ui/gfx/gfx.gyp:gfx_geometry', | 642 '../ui/gfx/gfx.gyp:gfx_geometry', |
| 643 '../ui/views/views.gyp:views', | 643 '../ui/views/views.gyp:views', |
| 644 'mojo_base.gyp:mojo_application_chromium', | 644 'mojo_base.gyp:mojo_application', |
| 645 'mojo_base.gyp:mojo_environment_chromium', | 645 'mojo_base.gyp:mojo_environment_chromium', |
| 646 'mojo_input_events_lib', | 646 'mojo_input_events_lib', |
| 647 'mojo_media_viewer_bindings', | 647 'mojo_media_viewer_bindings', |
| 648 'mojo_navigation_bindings', | 648 'mojo_navigation_bindings', |
| 649 'mojo_views_support', | 649 'mojo_views_support', |
| 650 'mojo_view_manager_bindings', | 650 'mojo_view_manager_bindings', |
| 651 'mojo_view_manager_lib', | 651 'mojo_view_manager_lib', |
| 652 '<(mojo_system_for_loadable_module)', | 652 '<(mojo_system_for_loadable_module)', |
| 653 ], | 653 ], |
| 654 'sources': [ | 654 'sources': [ |
| 655 'examples/media_viewer/media_viewer.cc', | 655 'examples/media_viewer/media_viewer.cc', |
| 656 'public/cpp/application/lib/mojo_main_chromium.cc', | 656 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 657 ], | 657 ], |
| 658 }, | 658 }, |
| 659 { | 659 { |
| 660 'target_name': 'mojo_wm_flow_wm', | 660 'target_name': 'mojo_wm_flow_wm', |
| 661 'type': 'loadable_module', | 661 'type': 'loadable_module', |
| 662 'dependencies': [ | 662 'dependencies': [ |
| 663 '../base/base.gyp:base', | 663 '../base/base.gyp:base', |
| 664 'mojo_base.gyp:mojo_application_chromium', | 664 'mojo_base.gyp:mojo_application', |
| 665 'mojo_base.gyp:mojo_environment_chromium', | 665 'mojo_base.gyp:mojo_environment_chromium', |
| 666 'mojo_core_window_manager_lib', | 666 'mojo_core_window_manager_lib', |
| 667 'mojo_view_manager_lib', | 667 'mojo_view_manager_lib', |
| 668 '<(mojo_system_for_loadable_module)', | 668 '<(mojo_system_for_loadable_module)', |
| 669 ], | 669 ], |
| 670 'sources': [ | 670 'sources': [ |
| 671 'examples/wm_flow/wm/wm.cc', | 671 'examples/wm_flow/wm/wm.cc', |
| 672 'public/cpp/application/lib/mojo_main_chromium.cc', | 672 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 673 ], | 673 ], |
| 674 }, | 674 }, |
| 675 { | 675 { |
| 676 'target_name': 'mojo_wm_flow_init', | 676 'target_name': 'mojo_wm_flow_init', |
| 677 'type': 'loadable_module', | 677 'type': 'loadable_module', |
| 678 'dependencies': [ | 678 'dependencies': [ |
| 679 '../base/base.gyp:base', | 679 '../base/base.gyp:base', |
| 680 'mojo_base.gyp:mojo_application_chromium', | 680 'mojo_base.gyp:mojo_application', |
| 681 'mojo_base.gyp:mojo_environment_chromium', | 681 'mojo_base.gyp:mojo_environment_chromium', |
| 682 'mojo_view_manager_bindings', | 682 'mojo_view_manager_bindings', |
| 683 '<(mojo_system_for_loadable_module)', | 683 '<(mojo_system_for_loadable_module)', |
| 684 ], | 684 ], |
| 685 'sources': [ | 685 'sources': [ |
| 686 'examples/wm_flow/init/init.cc', | 686 'examples/wm_flow/init/init.cc', |
| 687 'public/cpp/application/lib/mojo_main_chromium.cc', | 687 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 688 ], | 688 ], |
| 689 }, | 689 }, |
| 690 { | 690 { |
| 691 'target_name': 'mojo_wm_flow_app', | 691 'target_name': 'mojo_wm_flow_app', |
| 692 'type': 'loadable_module', | 692 'type': 'loadable_module', |
| 693 'dependencies': [ | 693 'dependencies': [ |
| 694 '../base/base.gyp:base', | 694 '../base/base.gyp:base', |
| 695 'mojo_base.gyp:mojo_application_chromium', | 695 'mojo_base.gyp:mojo_application', |
| 696 'mojo_base.gyp:mojo_environment_chromium', | 696 'mojo_base.gyp:mojo_environment_chromium', |
| 697 'mojo_core_window_manager_bindings', | 697 'mojo_core_window_manager_bindings', |
| 698 'mojo_view_manager_lib', | 698 'mojo_view_manager_lib', |
| 699 '<(mojo_system_for_loadable_module)', | 699 '<(mojo_system_for_loadable_module)', |
| 700 ], | 700 ], |
| 701 'sources': [ | 701 'sources': [ |
| 702 'examples/wm_flow/app/app.cc', | 702 'examples/wm_flow/app/app.cc', |
| 703 'public/cpp/application/lib/mojo_main_chromium.cc', | 703 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 704 ], | 704 ], |
| 705 }, | 705 }, |
| 706 ], | 706 ], |
| 707 }], | 707 }], |
| 708 ['OS=="linux"', { | 708 ['OS=="linux"', { |
| 709 'targets': [ | 709 'targets': [ |
| 710 { | 710 { |
| 711 'target_name': 'mojo_dbus_echo', | 711 'target_name': 'mojo_dbus_echo', |
| 712 'type': 'loadable_module', | 712 'type': 'loadable_module', |
| 713 'dependencies': [ | 713 'dependencies': [ |
| 714 '../base/base.gyp:base', | 714 '../base/base.gyp:base', |
| 715 'mojo_base.gyp:mojo_application_standalone', | 715 'mojo_base.gyp:mojo_application', |
| 716 'mojo_base.gyp:mojo_cpp_bindings', | 716 'mojo_base.gyp:mojo_cpp_bindings', |
| 717 'mojo_base.gyp:mojo_environment_standalone', | 717 'mojo_base.gyp:mojo_environment_standalone', |
| 718 'mojo_base.gyp:mojo_utility', | 718 'mojo_base.gyp:mojo_utility', |
| 719 'mojo_echo_bindings', | 719 'mojo_echo_bindings', |
| 720 '<(mojo_system_for_loadable_module)', | 720 '<(mojo_system_for_loadable_module)', |
| 721 ], | 721 ], |
| 722 'sources': [ | 722 'sources': [ |
| 723 'examples/dbus_echo/dbus_echo_app.cc', | 723 'examples/dbus_echo/dbus_echo_app.cc', |
| 724 'public/cpp/application/lib/mojo_main_standalone.cc', | 724 'public/cpp/application/lib/mojo_main_standalone.cc', |
| 725 ], | 725 ], |
| 726 }, | 726 }, |
| 727 ], | 727 ], |
| 728 }], | 728 }], |
| 729 ], | 729 ], |
| 730 } | 730 } |
| OLD | NEW |