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/mojo_application_package.gni") | 6 import("//mojo/mojo_application_package.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "ax_provider_impl.h", | 61 "ax_provider_impl.h", |
62 "blink_basic_type_converters.cc", | 62 "blink_basic_type_converters.cc", |
63 "blink_basic_type_converters.h", | 63 "blink_basic_type_converters.h", |
64 "blink_input_events_type_converters.cc", | 64 "blink_input_events_type_converters.cc", |
65 "blink_input_events_type_converters.h", | 65 "blink_input_events_type_converters.h", |
66 "blink_platform_impl.cc", | 66 "blink_platform_impl.cc", |
67 "blink_platform_impl.h", | 67 "blink_platform_impl.h", |
68 "blink_resource_constants.h", | 68 "blink_resource_constants.h", |
69 "blink_url_request_type_converters.cc", | 69 "blink_url_request_type_converters.cc", |
70 "blink_url_request_type_converters.h", | 70 "blink_url_request_type_converters.h", |
| 71 "devtools_agent_impl.cc", |
| 72 "devtools_agent_impl.h", |
71 "discardable_memory_allocator.cc", | 73 "discardable_memory_allocator.cc", |
72 "discardable_memory_allocator.h", | 74 "discardable_memory_allocator.h", |
73 "frame_tree_manager.cc", | 75 "frame_tree_manager.cc", |
74 "frame_tree_manager.h", | 76 "frame_tree_manager.h", |
75 "html_document.cc", | 77 "html_document.cc", |
76 "html_document.h", | 78 "html_document.h", |
77 "media_factory.cc", | 79 "media_factory.cc", |
78 "media_factory.h", | 80 "media_factory.h", |
79 "mock_web_blob_registry_impl.cc", | 81 "mock_web_blob_registry_impl.cc", |
80 "mock_web_blob_registry_impl.h", | 82 "mock_web_blob_registry_impl.h", |
(...skipping 25 matching lines...) Expand all Loading... |
106 | 108 |
107 include_dirs = [ "third_party/WebKit" ] | 109 include_dirs = [ "third_party/WebKit" ] |
108 | 110 |
109 deps = [ | 111 deps = [ |
110 "//base", | 112 "//base", |
111 "//base/third_party/dynamic_annotations", | 113 "//base/third_party/dynamic_annotations", |
112 "//cc", | 114 "//cc", |
113 "//cc/blink", | 115 "//cc/blink", |
114 "//cc/surfaces", | 116 "//cc/surfaces", |
115 "//components/clipboard/public/interfaces", | 117 "//components/clipboard/public/interfaces", |
| 118 "//components/devtools_service/public/cpp", |
| 119 "//components/devtools_service/public/interfaces", |
116 "//components/mime_util", | 120 "//components/mime_util", |
117 "//components/resource_provider/public/cpp", | 121 "//components/resource_provider/public/cpp", |
118 "//components/resource_provider/public/interfaces", | 122 "//components/resource_provider/public/interfaces", |
119 "//components/scheduler:scheduler", | 123 "//components/scheduler:scheduler", |
120 "//components/view_manager/public/interfaces", | 124 "//components/view_manager/public/interfaces", |
121 "//components/webcrypto", | 125 "//components/webcrypto", |
122 "//gin", | 126 "//gin", |
123 "//mandoline/services/navigation/public/interfaces", | 127 "//mandoline/services/navigation/public/interfaces", |
124 "//mandoline/tab/public/interfaces", | 128 "//mandoline/tab/public/interfaces", |
125 "//media", | 129 "//media", |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 "//base", | 226 "//base", |
223 "//mojo/application/public/cpp:test_support", | 227 "//mojo/application/public/cpp:test_support", |
224 "//net:test_support", | 228 "//net:test_support", |
225 "//testing/gtest", | 229 "//testing/gtest", |
226 "//third_party/mojo_services/src/accessibility/public/interfaces", | 230 "//third_party/mojo_services/src/accessibility/public/interfaces", |
227 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 231 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
228 ] | 232 ] |
229 | 233 |
230 data_deps = [ ":html_viewer" ] | 234 data_deps = [ ":html_viewer" ] |
231 } | 235 } |
OLD | NEW |