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_echo_bindings', | 8 'target_name': 'mojo_echo_bindings', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
11 'services/dbus_echo/echo.mojom', | 11 'services/dbus_echo/echo.mojom', |
12 ], | 12 ], |
13 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 13 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
14 'export_dependent_settings': [ | 14 'export_dependent_settings': [ |
15 'mojo_cpp_bindings', | 15 'mojo_cpp_bindings', |
16 ], | 16 ], |
17 'dependencies': [ | 17 'dependencies': [ |
18 'mojo_cpp_bindings', | 18 'mojo_cpp_bindings', |
19 ], | 19 ], |
20 }, | 20 }, |
21 { | 21 { |
| 22 'target_name': 'mojo_html_viewer', |
| 23 'type': 'loadable_module', |
| 24 'dependencies': [ |
| 25 '../net/net.gyp:net', |
| 26 '../skia/skia.gyp:skia', |
| 27 '../third_party/WebKit/public/blink.gyp:blink', |
| 28 '../ui/native_theme/native_theme.gyp:native_theme', |
| 29 '../url/url.gyp:url_lib', |
| 30 'mojo_application', |
| 31 'mojo_common_lib', |
| 32 'mojo_cpp_bindings', |
| 33 'mojo_environment_chromium', |
| 34 'mojo_navigation_bindings', |
| 35 'mojo_network_bindings', |
| 36 'mojo_launcher_bindings', |
| 37 'mojo_utility', |
| 38 'mojo_view_manager_lib', |
| 39 '<(mojo_system_for_loadable_module)', |
| 40 ], |
| 41 'include_dirs': [ |
| 42 'third_party/WebKit' |
| 43 ], |
| 44 'sources': [ |
| 45 'public/cpp/application/lib/mojo_main_chromium.cc', |
| 46 'services/html_viewer/blink_input_events_type_converters.cc', |
| 47 'services/html_viewer/blink_input_events_type_converters.h', |
| 48 'services/html_viewer/blink_platform_impl.cc', |
| 49 'services/html_viewer/blink_platform_impl.h', |
| 50 'services/html_viewer/html_viewer.cc', |
| 51 'services/html_viewer/html_document_view.cc', |
| 52 'services/html_viewer/html_document_view.h', |
| 53 'services/html_viewer/webmimeregistry_impl.cc', |
| 54 'services/html_viewer/webmimeregistry_impl.h', |
| 55 'services/html_viewer/webstoragenamespace_impl.cc', |
| 56 'services/html_viewer/webstoragenamespace_impl.h', |
| 57 'services/html_viewer/webthemeengine_impl.cc', |
| 58 'services/html_viewer/webthemeengine_impl.h', |
| 59 'services/html_viewer/webthread_impl.cc', |
| 60 'services/html_viewer/webthread_impl.h', |
| 61 'services/html_viewer/weburlloader_impl.cc', |
| 62 'services/html_viewer/weburlloader_impl.h', |
| 63 ], |
| 64 }, |
| 65 { |
22 'target_name': 'mojo_input_events_lib', | 66 'target_name': 'mojo_input_events_lib', |
23 'type': '<(component)', | 67 'type': '<(component)', |
24 'defines': [ | 68 'defines': [ |
25 'MOJO_INPUT_EVENTS_IMPLEMENTATION', | 69 'MOJO_INPUT_EVENTS_IMPLEMENTATION', |
26 ], | 70 ], |
27 'dependencies': [ | 71 'dependencies': [ |
28 '../base/base.gyp:base', | 72 '../base/base.gyp:base', |
29 '../ui/events/events.gyp:events', | 73 '../ui/events/events.gyp:events', |
30 '../ui/gfx/gfx.gyp:gfx_geometry', | 74 '../ui/gfx/gfx.gyp:gfx_geometry', |
31 'mojo_environment_chromium', | 75 'mojo_environment_chromium', |
(...skipping 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
750 'mojo_system_impl', | 794 'mojo_system_impl', |
751 ], | 795 ], |
752 'sources': [ | 796 'sources': [ |
753 'services/dbus_echo/dbus_echo_service.cc', | 797 'services/dbus_echo/dbus_echo_service.cc', |
754 ], | 798 ], |
755 }, | 799 }, |
756 ], | 800 ], |
757 }], | 801 }], |
758 ], | 802 ], |
759 } | 803 } |
OLD | NEW |