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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "blink_url_request_type_converters.cc", | 63 "blink_url_request_type_converters.cc", |
64 "blink_url_request_type_converters.h", | 64 "blink_url_request_type_converters.h", |
65 "content_handler_impl.cc", | 65 "content_handler_impl.cc", |
66 "content_handler_impl.h", | 66 "content_handler_impl.h", |
67 "devtools_agent_impl.cc", | 67 "devtools_agent_impl.cc", |
68 "devtools_agent_impl.h", | 68 "devtools_agent_impl.h", |
69 "discardable_memory_allocator.cc", | 69 "discardable_memory_allocator.cc", |
70 "discardable_memory_allocator.h", | 70 "discardable_memory_allocator.h", |
71 "document_resource_waiter.cc", | 71 "document_resource_waiter.cc", |
72 "document_resource_waiter.h", | 72 "document_resource_waiter.h", |
73 "frame.cc", | |
74 "frame.h", | |
75 "frame_tree_manager.cc", | |
76 "frame_tree_manager.h", | |
77 "frame_tree_manager_delegate.h", | |
78 "geolocation_client_impl.cc", | 73 "geolocation_client_impl.cc", |
79 "geolocation_client_impl.h", | 74 "geolocation_client_impl.h", |
80 "global_state.cc", | 75 "global_state.cc", |
81 "global_state.h", | 76 "global_state.h", |
82 "html_document.cc", | 77 "html_document.cc", |
83 "html_document.h", | 78 "html_document.h", |
84 "html_document_application_delegate.cc", | 79 "html_document_application_delegate.cc", |
85 "html_document_application_delegate.h", | 80 "html_document_application_delegate.h", |
86 "html_document_oopif.cc", | 81 "html_document_oopif.cc", |
87 "html_document_oopif.h", | 82 "html_document_oopif.h", |
| 83 "html_frame.cc", |
| 84 "html_frame.h", |
| 85 "html_frame_tree_manager.cc", |
| 86 "html_frame_tree_manager.h", |
| 87 "html_frame_tree_manager_delegate.h", |
88 "html_viewer.cc", | 88 "html_viewer.cc", |
89 "html_viewer.h", | 89 "html_viewer.h", |
90 "html_viewer_switches.cc", | 90 "html_viewer_switches.cc", |
91 "html_viewer_switches.h", | 91 "html_viewer_switches.h", |
92 "media_factory.cc", | 92 "media_factory.cc", |
93 "media_factory.h", | 93 "media_factory.h", |
94 "mock_web_blob_registry_impl.cc", | 94 "mock_web_blob_registry_impl.cc", |
95 "mock_web_blob_registry_impl.h", | 95 "mock_web_blob_registry_impl.h", |
96 "test_html_viewer_impl.cc", | 96 "test_html_viewer_impl.cc", |
97 "test_html_viewer_impl.h", | 97 "test_html_viewer_impl.h", |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
269 "//testing/gtest", | 269 "//testing/gtest", |
270 "//third_party/mojo_services/src/accessibility/public/interfaces", | 270 "//third_party/mojo_services/src/accessibility/public/interfaces", |
271 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 271 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
272 ] | 272 ] |
273 | 273 |
274 data_deps = [ | 274 data_deps = [ |
275 ":html_viewer", | 275 ":html_viewer", |
276 "//components/view_manager", | 276 "//components/view_manager", |
277 ] | 277 ] |
278 } | 278 } |
OLD | NEW |