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("//build/module_args/v8.gni") | 5 import("//build/module_args/v8.gni") |
6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 "setup.cc", | 82 "setup.cc", |
83 "setup.h", | 83 "setup.h", |
84 "touch_handler.cc", | 84 "touch_handler.cc", |
85 "touch_handler.h", | 85 "touch_handler.h", |
86 "web_clipboard_impl.cc", | 86 "web_clipboard_impl.cc", |
87 "web_clipboard_impl.h", | 87 "web_clipboard_impl.h", |
88 "web_cookie_jar_impl.cc", | 88 "web_cookie_jar_impl.cc", |
89 "web_cookie_jar_impl.h", | 89 "web_cookie_jar_impl.h", |
90 "web_layer_tree_view_impl.cc", | 90 "web_layer_tree_view_impl.cc", |
91 "web_layer_tree_view_impl.h", | 91 "web_layer_tree_view_impl.h", |
92 "web_message_port_channel_impl.cc", | |
93 "web_message_port_channel_impl.h", | |
94 "web_mime_registry_impl.cc", | 92 "web_mime_registry_impl.cc", |
95 "web_mime_registry_impl.h", | 93 "web_mime_registry_impl.h", |
96 "web_notification_manager_impl.cc", | 94 "web_notification_manager_impl.cc", |
97 "web_notification_manager_impl.h", | 95 "web_notification_manager_impl.h", |
98 "web_socket_handle_impl.cc", | 96 "web_socket_handle_impl.cc", |
99 "web_socket_handle_impl.h", | 97 "web_socket_handle_impl.h", |
100 "web_storage_namespace_impl.cc", | 98 "web_storage_namespace_impl.cc", |
101 "web_storage_namespace_impl.h", | 99 "web_storage_namespace_impl.h", |
102 "web_theme_engine_impl.cc", | 100 "web_theme_engine_impl.cc", |
103 "web_theme_engine_impl.h", | 101 "web_theme_engine_impl.h", |
104 "web_url_loader_impl.cc", | 102 "web_url_loader_impl.cc", |
105 "web_url_loader_impl.h", | 103 "web_url_loader_impl.h", |
106 ] | 104 ] |
107 | 105 |
108 include_dirs = [ "third_party/WebKit" ] | 106 include_dirs = [ "third_party/WebKit" ] |
109 | 107 |
110 deps = [ | 108 deps = [ |
111 "//base", | 109 "//base", |
112 "//base/third_party/dynamic_annotations", | 110 "//base/third_party/dynamic_annotations", |
113 "//cc", | 111 "//cc", |
114 "//cc/blink", | 112 "//cc/blink", |
115 "//cc/surfaces", | 113 "//cc/surfaces", |
116 "//components/clipboard/public/interfaces", | 114 "//components/clipboard/public/interfaces", |
117 "//components/devtools_service/public/cpp", | 115 "//components/devtools_service/public/cpp", |
118 "//components/devtools_service/public/interfaces", | 116 "//components/devtools_service/public/interfaces", |
| 117 "//components/message_port", |
119 "//components/mime_util", | 118 "//components/mime_util", |
120 "//components/resource_provider/public/cpp", | 119 "//components/resource_provider/public/cpp", |
121 "//components/resource_provider/public/interfaces", | 120 "//components/resource_provider/public/interfaces", |
122 "//components/scheduler:scheduler", | 121 "//components/scheduler:scheduler", |
123 "//components/view_manager/gles2:lib", | 122 "//components/view_manager/gles2:lib", |
124 "//components/view_manager/public/interfaces", | 123 "//components/view_manager/public/interfaces", |
125 "//components/webcrypto", | 124 "//components/webcrypto", |
126 "//gin", | 125 "//gin", |
127 "//mandoline/services/navigation/public/interfaces", | 126 "//mandoline/services/navigation/public/interfaces", |
128 "//mandoline/tab/public/interfaces", | 127 "//mandoline/tab/public/interfaces", |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 "//base", | 225 "//base", |
227 "//mojo/application/public/cpp:test_support", | 226 "//mojo/application/public/cpp:test_support", |
228 "//net:test_support", | 227 "//net:test_support", |
229 "//testing/gtest", | 228 "//testing/gtest", |
230 "//third_party/mojo_services/src/accessibility/public/interfaces", | 229 "//third_party/mojo_services/src/accessibility/public/interfaces", |
231 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 230 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
232 ] | 231 ] |
233 | 232 |
234 data_deps = [ ":html_viewer" ] | 233 data_deps = [ ":html_viewer" ] |
235 } | 234 } |
OLD | NEW |