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