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 # GN version: //mojo/services/clipboard/ |
| 9 'target_name': 'mojo_clipboard', |
| 10 'type': 'loadable_module', |
| 11 'dependencies': [ |
| 12 '../base/base.gyp:base', |
| 13 'mojo_base.gyp:mojo_common_lib', |
| 14 'mojo_base.gyp:mojo_cpp_bindings', |
| 15 'mojo_base.gyp:mojo_utility', |
| 16 'mojo_base.gyp:mojo_application_chromium', |
| 17 'mojo_clipboard_bindings', |
| 18 '<(mojo_system_for_loadable_module)', |
| 19 ], |
| 20 'sources': [ |
| 21 'services/clipboard/clipboard_standalone_impl.cc', |
| 22 'services/clipboard/clipboard_standalone_impl.h', |
| 23 'services/clipboard/main.cc', |
| 24 ], |
| 25 }, |
| 26 { |
| 27 # GN version: //mojo/services/public/interfaces/clipboard |
| 28 'target_name': 'mojo_clipboard_bindings', |
| 29 'type': 'static_library', |
| 30 'sources': [ |
| 31 'services/public/interfaces/clipboard/clipboard.mojom', |
| 32 ], |
| 33 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
| 34 'dependencies': [ |
| 35 'mojo_base.gyp:mojo_cpp_bindings', |
| 36 ], |
| 37 'export_dependent_settings': [ |
| 38 'mojo_base.gyp:mojo_cpp_bindings', |
| 39 ], |
| 40 }, |
| 41 { |
| 42 # GN version: //mojo/services/clipboard:mojo_clipboard_unittests |
| 43 'target_name': 'mojo_clipboard_unittests', |
| 44 'type': 'executable', |
| 45 'dependencies': [ |
| 46 '../base/base.gyp:base', |
| 47 '../base/base.gyp:test_support_base', |
| 48 '../testing/gtest.gyp:gtest', |
| 49 'mojo_application_manager', |
| 50 'mojo_base.gyp:mojo_application_chromium', |
| 51 'mojo_base.gyp:mojo_run_all_unittests', |
| 52 'mojo_base.gyp:mojo_system_impl', |
| 53 'mojo_clipboard_bindings', |
| 54 'mojo_shell_test_support', |
| 55 ], |
| 56 'sources': [ |
| 57 'services/clipboard/clipboard_standalone_unittest.cc', |
| 58 ], |
| 59 }, |
| 60 { |
8 'target_name': 'mojo_html_viewer', | 61 'target_name': 'mojo_html_viewer', |
9 'type': 'loadable_module', | 62 'type': 'loadable_module', |
10 'dependencies': [ | 63 'dependencies': [ |
11 '../net/net.gyp:net', | 64 '../net/net.gyp:net', |
12 '../skia/skia.gyp:skia', | 65 '../skia/skia.gyp:skia', |
13 '../third_party/WebKit/public/blink.gyp:blink', | 66 '../third_party/WebKit/public/blink.gyp:blink', |
14 '../ui/native_theme/native_theme.gyp:native_theme', | 67 '../ui/native_theme/native_theme.gyp:native_theme', |
15 '../url/url.gyp:url_lib', | 68 '../url/url.gyp:url_lib', |
16 'mojo_base.gyp:mojo_common_lib', | 69 'mojo_base.gyp:mojo_common_lib', |
17 'mojo_base.gyp:mojo_cpp_bindings', | 70 'mojo_base.gyp:mojo_cpp_bindings', |
18 'mojo_base.gyp:mojo_utility', | 71 'mojo_base.gyp:mojo_utility', |
19 'mojo_base.gyp:mojo_application_chromium', | 72 'mojo_base.gyp:mojo_application_chromium', |
| 73 'mojo_clipboard_bindings', |
20 'mojo_content_handler_bindings', | 74 'mojo_content_handler_bindings', |
21 'mojo_navigation_bindings', | 75 'mojo_navigation_bindings', |
22 'mojo_network_bindings', | 76 'mojo_network_bindings', |
23 'mojo_launcher_bindings', | 77 'mojo_launcher_bindings', |
24 'mojo_view_manager_lib', | 78 'mojo_view_manager_lib', |
25 '<(mojo_system_for_loadable_module)', | 79 '<(mojo_system_for_loadable_module)', |
26 ], | 80 ], |
27 'include_dirs': [ | 81 'include_dirs': [ |
28 'third_party/WebKit' | 82 'third_party/WebKit' |
29 ], | 83 ], |
30 'sources': [ | 84 'sources': [ |
31 'services/html_viewer/blink_basic_type_converters.cc', | 85 'services/html_viewer/blink_basic_type_converters.cc', |
32 'services/html_viewer/blink_basic_type_converters.h', | 86 'services/html_viewer/blink_basic_type_converters.h', |
33 'services/html_viewer/blink_input_events_type_converters.cc', | 87 'services/html_viewer/blink_input_events_type_converters.cc', |
34 'services/html_viewer/blink_input_events_type_converters.h', | 88 'services/html_viewer/blink_input_events_type_converters.h', |
35 'services/html_viewer/blink_platform_impl.cc', | 89 'services/html_viewer/blink_platform_impl.cc', |
36 'services/html_viewer/blink_platform_impl.h', | 90 'services/html_viewer/blink_platform_impl.h', |
37 'services/html_viewer/blink_url_request_type_converters.cc', | 91 'services/html_viewer/blink_url_request_type_converters.cc', |
38 'services/html_viewer/blink_url_request_type_converters.h', | 92 'services/html_viewer/blink_url_request_type_converters.h', |
39 'services/html_viewer/html_viewer.cc', | 93 'services/html_viewer/html_viewer.cc', |
40 'services/html_viewer/html_document_view.cc', | 94 'services/html_viewer/html_document_view.cc', |
41 'services/html_viewer/html_document_view.h', | 95 'services/html_viewer/html_document_view.h', |
| 96 'services/html_viewer/webclipboard_impl.cc', |
| 97 'services/html_viewer/webclipboard_impl.h', |
42 'services/html_viewer/webcookiejar_impl.cc', | 98 'services/html_viewer/webcookiejar_impl.cc', |
43 'services/html_viewer/webcookiejar_impl.h', | 99 'services/html_viewer/webcookiejar_impl.h', |
44 'services/html_viewer/webmimeregistry_impl.cc', | 100 'services/html_viewer/webmimeregistry_impl.cc', |
45 'services/html_viewer/webmimeregistry_impl.h', | 101 'services/html_viewer/webmimeregistry_impl.h', |
46 'services/html_viewer/websockethandle_impl.cc', | 102 'services/html_viewer/websockethandle_impl.cc', |
47 'services/html_viewer/websockethandle_impl.h', | 103 'services/html_viewer/websockethandle_impl.h', |
48 'services/html_viewer/webstoragenamespace_impl.cc', | 104 'services/html_viewer/webstoragenamespace_impl.cc', |
49 'services/html_viewer/webstoragenamespace_impl.h', | 105 'services/html_viewer/webstoragenamespace_impl.h', |
50 'services/html_viewer/webthemeengine_impl.cc', | 106 'services/html_viewer/webthemeengine_impl.cc', |
51 'services/html_viewer/webthemeengine_impl.h', | 107 'services/html_viewer/webthemeengine_impl.h', |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 'dependencies': [ | 957 'dependencies': [ |
902 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', | 958 '../ui/gfx/x/gfx_x11.gyp:gfx_x11', |
903 ], | 959 ], |
904 }], | 960 }], |
905 ], | 961 ], |
906 }, | 962 }, |
907 ], | 963 ], |
908 }], | 964 }], |
909 ], | 965 ], |
910 } | 966 } |
OLD | NEW |