OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # GYP version: mojo/mojo_services.gypi:html_viewer | 5 source_set("lib") { |
6 shared_library("html_viewer") { | |
7 sources = [ | 6 sources = [ |
| 7 "ax_provider_impl.cc", |
| 8 "ax_provider_impl.h", |
8 "blink_basic_type_converters.cc", | 9 "blink_basic_type_converters.cc", |
9 "blink_basic_type_converters.h", | 10 "blink_basic_type_converters.h", |
10 "blink_input_events_type_converters.cc", | 11 "blink_input_events_type_converters.cc", |
11 "blink_input_events_type_converters.h", | 12 "blink_input_events_type_converters.h", |
12 "blink_platform_impl.cc", | 13 "blink_platform_impl.cc", |
13 "blink_platform_impl.h", | 14 "blink_platform_impl.h", |
14 "blink_url_request_type_converters.cc", | 15 "blink_url_request_type_converters.cc", |
15 "blink_url_request_type_converters.h", | 16 "blink_url_request_type_converters.h", |
16 "html_viewer.cc", | |
17 "html_document_view.cc", | 17 "html_document_view.cc", |
18 "html_document_view.h", | 18 "html_document_view.h", |
| 19 "mojo_blink_platform_impl.cc", |
| 20 "mojo_blink_platform_impl.h", |
19 "webclipboard_impl.cc", | 21 "webclipboard_impl.cc", |
20 "webclipboard_impl.h", | 22 "webclipboard_impl.h", |
21 "webcookiejar_impl.cc", | 23 "webcookiejar_impl.cc", |
22 "webcookiejar_impl.h", | 24 "webcookiejar_impl.h", |
23 "webmediaplayer_factory.cc", | 25 "webmediaplayer_factory.cc", |
24 "webmediaplayer_factory.h", | 26 "webmediaplayer_factory.h", |
25 "webmimeregistry_impl.cc", | 27 "webmimeregistry_impl.cc", |
26 "webmimeregistry_impl.h", | 28 "webmimeregistry_impl.h", |
27 "websockethandle_impl.cc", | 29 "websockethandle_impl.cc", |
28 "websockethandle_impl.h", | 30 "websockethandle_impl.h", |
(...skipping 23 matching lines...) Expand all Loading... |
52 "//mojo/application", | 54 "//mojo/application", |
53 "//mojo/cc", | 55 "//mojo/cc", |
54 "//mojo/common", | 56 "//mojo/common", |
55 "//mojo/converters/surfaces", | 57 "//mojo/converters/surfaces", |
56 "//mojo/public/c/system:for_shared_library", | 58 "//mojo/public/c/system:for_shared_library", |
57 "//mojo/public/cpp/bindings", | 59 "//mojo/public/cpp/bindings", |
58 "//mojo/public/cpp/utility", | 60 "//mojo/public/cpp/utility", |
59 "//mojo/public/interfaces/application", | 61 "//mojo/public/interfaces/application", |
60 "//mojo/services/public/cpp/network", | 62 "//mojo/services/public/cpp/network", |
61 "//mojo/services/public/cpp/view_manager", | 63 "//mojo/services/public/cpp/view_manager", |
| 64 "//mojo/services/public/interfaces/accessibility", |
62 "//mojo/services/public/interfaces/clipboard", | 65 "//mojo/services/public/interfaces/clipboard", |
63 "//mojo/services/public/interfaces/content_handler", | 66 "//mojo/services/public/interfaces/content_handler", |
64 "//mojo/services/public/interfaces/gpu", | 67 "//mojo/services/public/interfaces/gpu", |
65 "//mojo/services/public/interfaces/input_events:input_events", | 68 "//mojo/services/public/interfaces/input_events:input_events", |
66 "//mojo/services/public/interfaces/navigation", | 69 "//mojo/services/public/interfaces/navigation", |
67 "//mojo/services/public/interfaces/network", | 70 "//mojo/services/public/interfaces/network", |
68 "//mojo/services/public/interfaces/surfaces", | 71 "//mojo/services/public/interfaces/surfaces", |
69 "//net", | 72 "//net", |
70 "//skia", | 73 "//skia", |
71 "//third_party/WebKit/public:blink", | |
72 "//ui/native_theme", | 74 "//ui/native_theme", |
73 "//url", | 75 "//url", |
74 ] | 76 ] |
| 77 |
| 78 public_deps = [ |
| 79 "//third_party/WebKit/public:blink", |
| 80 ] |
75 } | 81 } |
| 82 |
| 83 # GYP version: mojo/mojo_services.gypi:html_viewer |
| 84 shared_library("html_viewer") { |
| 85 sources = [ |
| 86 "html_viewer.cc", |
| 87 ] |
| 88 deps = [ |
| 89 ":lib", |
| 90 ] |
| 91 } |
| 92 |
| 93 test("tests") { |
| 94 output_name = "html_viewer_unittests" |
| 95 sources = [ |
| 96 "ax_provider_impl_unittest.cc", |
| 97 ] |
| 98 deps = [ |
| 99 ":lib", |
| 100 "//base/test:run_all_unittests", |
| 101 ] |
| 102 } |
OLD | NEW |