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