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 'target_defaults': { | 6 'target_defaults': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
9 'defines': [ | 9 'defines': [ |
10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
11 'MOJO_SHELL_DEBUG_URL="<(mojo_shell_debug_url)"', | 11 'MOJO_SHELL_DEBUG_URL="<(mojo_shell_debug_url)"', |
12 ], | 12 ], |
13 }], | 13 }], |
14 ], | 14 ], |
15 }, | 15 }, |
16 'includes': [ | 16 'includes': [ |
17 'mojo_apps.gypi', | 17 'mojo_apps.gypi', |
18 'mojo_examples.gypi', | 18 'mojo_examples.gypi', |
19 'mojo_services.gypi', | 19 'mojo_services.gypi', |
20 'mojo_variables.gypi', | 20 'mojo_variables.gypi', |
21 ], | 21 ], |
22 'targets': [ | 22 'targets': [ |
23 { | 23 { |
24 'target_name': 'mojo', | 24 'target_name': 'mojo', |
25 'type': 'none', | 25 'type': 'none', |
26 'dependencies': [ | 26 'dependencies': [ |
27 'mojo_base.gyp:mojo_base', | 27 'mojo_base.gyp:mojo_base', |
28 'mojo_apps_js_unittests', | 28 'mojo_apps_js_unittests', |
29 'mojo_compositor_app', | 29 'mojo_compositor_app', |
| 30 'mojo_content_handler_demo', |
30 'mojo_echo_client', | 31 'mojo_echo_client', |
31 'mojo_echo_service', | 32 'mojo_echo_service', |
32 'mojo_geometry_lib', | 33 'mojo_geometry_lib', |
33 'mojo_html_viewer', | 34 'mojo_html_viewer', |
34 'mojo_js', | 35 'mojo_js', |
35 'mojo_launcher', | 36 'mojo_launcher', |
36 'mojo_native_viewport_service', | 37 'mojo_native_viewport_service', |
37 'mojo_network_service', | 38 'mojo_network_service', |
38 'mojo_pepper_container_app', | 39 'mojo_pepper_container_app', |
39 'mojo_png_viewer', | 40 'mojo_png_viewer', |
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 'target_name': 'mojo_service_manager', | 332 'target_name': 'mojo_service_manager', |
332 'type': '<(component)', | 333 'type': '<(component)', |
333 'defines': [ | 334 'defines': [ |
334 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', | 335 'MOJO_SERVICE_MANAGER_IMPLEMENTATION', |
335 ], | 336 ], |
336 'dependencies': [ | 337 'dependencies': [ |
337 '../base/base.gyp:base', | 338 '../base/base.gyp:base', |
338 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 339 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
339 '../net/net.gyp:net', | 340 '../net/net.gyp:net', |
340 '../url/url.gyp:url_lib', | 341 '../url/url.gyp:url_lib', |
| 342 'mojo_content_handler_bindings', |
| 343 'mojo_network_bindings', |
341 'mojo_base.gyp:mojo_application_bindings', | 344 'mojo_base.gyp:mojo_application_bindings', |
342 'mojo_base.gyp:mojo_common_lib', | 345 'mojo_base.gyp:mojo_common_lib', |
343 'mojo_base.gyp:mojo_environment_chromium', | 346 'mojo_base.gyp:mojo_environment_chromium', |
344 '<(mojo_system_for_component)', | 347 '<(mojo_system_for_component)', |
345 ], | 348 ], |
346 'sources': [ | 349 'sources': [ |
347 'service_manager/background_shell_service_loader.cc', | 350 'service_manager/background_shell_service_loader.cc', |
348 'service_manager/background_shell_service_loader.h', | 351 'service_manager/background_shell_service_loader.h', |
| 352 'service_manager/service_loader.cc', |
349 'service_manager/service_loader.h', | 353 'service_manager/service_loader.h', |
350 'service_manager/service_manager.cc', | 354 'service_manager/service_manager.cc', |
351 'service_manager/service_manager.h', | 355 'service_manager/service_manager.h', |
352 'service_manager/service_manager_export.h', | 356 'service_manager/service_manager_export.h', |
353 ], | 357 ], |
354 'export_dependent_settings': [ | 358 'export_dependent_settings': [ |
355 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 359 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
356 'mojo_base.gyp:mojo_application_bindings', | 360 'mojo_base.gyp:mojo_application_bindings', |
357 ], | 361 ], |
358 }, | 362 }, |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 'views/views_init_internal.h', | 547 'views/views_init_internal.h', |
544 ], | 548 ], |
545 'defines': [ | 549 'defines': [ |
546 'MOJO_VIEWS_IMPLEMENTATION', | 550 'MOJO_VIEWS_IMPLEMENTATION', |
547 ], | 551 ], |
548 }, | 552 }, |
549 ], | 553 ], |
550 }], | 554 }], |
551 ], | 555 ], |
552 } | 556 } |
OLD | NEW |