OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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_html_viewer', | 8 'target_name': 'mojo_html_viewer', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../net/net.gyp:net', | 11 '../net/net.gyp:net', |
12 '../skia/skia.gyp:skia', | 12 '../skia/skia.gyp:skia', |
13 '../third_party/WebKit/public/blink.gyp:blink', | 13 '../third_party/WebKit/public/blink.gyp:blink', |
14 '../ui/native_theme/native_theme.gyp:native_theme', | 14 '../ui/native_theme/native_theme.gyp:native_theme', |
15 '../url/url.gyp:url_lib', | 15 '../url/url.gyp:url_lib', |
16 'mojo_base.gyp:mojo_common_lib', | 16 'mojo_base.gyp:mojo_common_lib', |
17 'mojo_base.gyp:mojo_cpp_bindings', | 17 'mojo_base.gyp:mojo_cpp_bindings', |
18 'mojo_base.gyp:mojo_utility', | 18 'mojo_base.gyp:mojo_utility', |
19 'mojo_base.gyp:mojo_application_chromium', | 19 'mojo_base.gyp:mojo_application_chromium', |
20 'mojo_content_handler_bindings', | 20 'mojo_content_handler_bindings', |
21 'mojo_navigation_bindings', | 21 'mojo_navigation_bindings', |
22 'mojo_network_bindings', | 22 'mojo_network_bindings', |
23 'mojo_launcher_bindings', | |
24 'mojo_view_manager_lib', | 23 'mojo_view_manager_lib', |
25 '<(mojo_system_for_loadable_module)', | 24 '<(mojo_system_for_loadable_module)', |
26 ], | 25 ], |
27 'include_dirs': [ | 26 'include_dirs': [ |
28 'third_party/WebKit' | 27 'third_party/WebKit' |
29 ], | 28 ], |
30 'sources': [ | 29 'sources': [ |
31 'services/html_viewer/blink_basic_type_converters.cc', | 30 'services/html_viewer/blink_basic_type_converters.cc', |
32 'services/html_viewer/blink_basic_type_converters.h', | 31 'services/html_viewer/blink_basic_type_converters.h', |
33 'services/html_viewer/blink_input_events_type_converters.cc', | 32 'services/html_viewer/blink_input_events_type_converters.cc', |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 }, | 454 }, |
456 { | 455 { |
457 # GN version: //mojo/services/public/cpp/view_manager:common | 456 # GN version: //mojo/services/public/cpp/view_manager:common |
458 'target_name': 'mojo_view_manager_common', | 457 'target_name': 'mojo_view_manager_common', |
459 'type': 'static_library', | 458 'type': 'static_library', |
460 'sources': [ | 459 'sources': [ |
461 'services/public/cpp/view_manager/types.h', | 460 'services/public/cpp/view_manager/types.h', |
462 ], | 461 ], |
463 }, | 462 }, |
464 { | 463 { |
465 # GN version: //mojo/services/public/interfaces/launcher | |
466 'target_name': 'mojo_launcher_bindings', | |
467 'type': 'static_library', | |
468 'sources': [ | |
469 'services/public/interfaces/launcher/launcher.mojom', | |
470 ], | |
471 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | |
472 'export_dependent_settings': [ | |
473 'mojo_base.gyp:mojo_cpp_bindings', | |
474 ], | |
475 'dependencies': [ | |
476 'mojo_base.gyp:mojo_cpp_bindings', | |
477 'mojo_navigation_bindings', | |
478 ], | |
479 }, | |
480 { | |
481 'target_name': 'mojo_launcher', | |
482 'type': 'loadable_module', | |
483 'dependencies': [ | |
484 '../base/base.gyp:base', | |
485 '../url/url.gyp:url_lib', | |
486 'mojo_base.gyp:mojo_cpp_bindings', | |
487 'mojo_base.gyp:mojo_application_chromium', | |
488 'mojo_launcher_bindings', | |
489 'mojo_network_bindings', | |
490 '<(mojo_system_for_loadable_module)', | |
491 ], | |
492 'sources': [ | |
493 'services/launcher/launcher.cc', | |
494 ], | |
495 }, | |
496 { | |
497 # GN version: //mojo/services/public/interfaces/view_manager | 464 # GN version: //mojo/services/public/interfaces/view_manager |
498 'target_name': 'mojo_view_manager_bindings', | 465 'target_name': 'mojo_view_manager_bindings', |
499 'type': 'static_library', | 466 'type': 'static_library', |
500 'sources': [ | 467 'sources': [ |
501 'services/public/interfaces/view_manager/view_manager.mojom', | 468 'services/public/interfaces/view_manager/view_manager.mojom', |
502 'services/public/interfaces/view_manager/view_manager_constants.mojom', | 469 'services/public/interfaces/view_manager/view_manager_constants.mojom', |
503 ], | 470 ], |
504 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 471 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
505 'dependencies': [ | 472 'dependencies': [ |
506 'mojo_base.gyp:mojo_application_bindings', | 473 'mojo_base.gyp:mojo_application_bindings', |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 'dependencies': [ | 868 'dependencies': [ |
902 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 869 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
903 ], | 870 ], |
904 }], | 871 }], |
905 ], | 872 ], |
906 }, | 873 }, |
907 ], | 874 ], |
908 }], | 875 }], |
909 ], | 876 ], |
910 } | 877 } |
OLD | NEW |