| 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 import("//mojo/system.gni") | 5 import("//mojo/system.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer | 7 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer |
| 8 shared_library("html_viewer") { | 8 shared_library("html_viewer") { |
| 9 output_name = "mojo_html_viewer" | 9 output_name = "mojo_html_viewer" |
| 10 | 10 |
| 11 sources = [ | 11 sources = [ |
| 12 "blink_basic_type_converters.cc", | 12 "blink_basic_type_converters.cc", |
| 13 "blink_basic_type_converters.h", | 13 "blink_basic_type_converters.h", |
| 14 "blink_input_events_type_converters.cc", | 14 "blink_input_events_type_converters.cc", |
| 15 "blink_input_events_type_converters.h", | 15 "blink_input_events_type_converters.h", |
| 16 "blink_platform_impl.cc", | 16 "blink_platform_impl.cc", |
| 17 "blink_platform_impl.h", | 17 "blink_platform_impl.h", |
| 18 "blink_url_request_type_converters.cc", | 18 "blink_url_request_type_converters.cc", |
| 19 "blink_url_request_type_converters.h", | 19 "blink_url_request_type_converters.h", |
| 20 "html_viewer.cc", | 20 "html_viewer.cc", |
| 21 "html_document_view.cc", | 21 "html_document_view.cc", |
| 22 "html_document_view.h", | 22 "html_document_view.h", |
| 23 "webclipboard_impl.cc", | |
| 24 "webclipboard_impl.h", | |
| 25 "webcookiejar_impl.cc", | 23 "webcookiejar_impl.cc", |
| 26 "webcookiejar_impl.h", | 24 "webcookiejar_impl.h", |
| 27 "webmediaplayer_factory.cc", | 25 "webmediaplayer_factory.cc", |
| 28 "webmediaplayer_factory.h", | 26 "webmediaplayer_factory.h", |
| 29 "webmimeregistry_impl.cc", | 27 "webmimeregistry_impl.cc", |
| 30 "webmimeregistry_impl.h", | 28 "webmimeregistry_impl.h", |
| 31 "websockethandle_impl.cc", | 29 "websockethandle_impl.cc", |
| 32 "websockethandle_impl.h", | 30 "websockethandle_impl.h", |
| 33 "webstoragenamespace_impl.cc", | 31 "webstoragenamespace_impl.cc", |
| 34 "webstoragenamespace_impl.h", | 32 "webstoragenamespace_impl.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 49 "//cc/blink", | 47 "//cc/blink", |
| 50 "//cc/surfaces", | 48 "//cc/surfaces", |
| 51 "//media", | 49 "//media", |
| 52 "//media/blink", | 50 "//media/blink", |
| 53 "//mojo/cc", | 51 "//mojo/cc", |
| 54 "//mojo/common", | 52 "//mojo/common", |
| 55 "//mojo/application", | 53 "//mojo/application", |
| 56 "//mojo/public/cpp/bindings", | 54 "//mojo/public/cpp/bindings", |
| 57 "//mojo/public/cpp/utility", | 55 "//mojo/public/cpp/utility", |
| 58 "//mojo/services/public/cpp/view_manager", | 56 "//mojo/services/public/cpp/view_manager", |
| 59 "//mojo/services/public/interfaces/clipboard", | |
| 60 "//mojo/services/public/interfaces/content_handler", | 57 "//mojo/services/public/interfaces/content_handler", |
| 61 "//mojo/services/public/interfaces/gpu", | 58 "//mojo/services/public/interfaces/gpu", |
| 62 "//mojo/services/public/interfaces/navigation", | 59 "//mojo/services/public/interfaces/navigation", |
| 63 "//mojo/services/public/interfaces/network", | 60 "//mojo/services/public/interfaces/network", |
| 64 "//mojo/services/public/interfaces/surfaces", | 61 "//mojo/services/public/interfaces/surfaces", |
| 65 "//net", | 62 "//net", |
| 66 "//skia", | 63 "//skia", |
| 67 "//third_party/WebKit/public:blink", | 64 "//third_party/WebKit/public:blink", |
| 68 "//ui/native_theme", | 65 "//ui/native_theme", |
| 69 "//url", | 66 "//url", |
| 70 ] + mojo_system_for_shared_library | 67 ] + mojo_system_for_shared_library |
| 71 } | 68 } |
| OLD | NEW |