1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
blink_core_sources_inspector = [
"agent_registry.h",
"console_message.cc",
"console_message.h",
"console_message_storage.cc",
"console_message_storage.h",
"dev_tools_emulator.cc",
"dev_tools_emulator.h",
"dev_tools_host.cc",
"dev_tools_host.h",
"devtools_agent.cc",
"devtools_agent.h",
"devtools_session.cc",
"devtools_session.h",
"dom_editor.cc",
"dom_editor.h",
"dom_patch_support.cc",
"dom_patch_support.h",
"dom_traversal_utils.cc",
"dom_traversal_utils.h",
"identifiers_factory.cc",
"identifiers_factory.h",
"inspect_tools.cc",
"inspect_tools.h",
"exception_metadata.h",
"exception_metadata.cc",
"inspected_frames.cc",
"inspected_frames.h",
"inspector_animation_agent.cc",
"inspector_animation_agent.h",
"inspector_audits_agent.cc",
"inspector_audits_agent.h",
"inspector_audits_issue.cc",
"inspector_audits_issue.h",
"inspector_base_agent.h",
"inspector_css_agent.cc",
"inspector_css_agent.h",
"inspector_css_parser_observer.cc",
"inspector_css_parser_observer.h",
"inspector_dom_agent.cc",
"inspector_dom_agent.h",
"inspector_dom_debugger_agent.cc",
"inspector_dom_debugger_agent.h",
"inspector_dom_snapshot_agent.cc",
"inspector_dom_snapshot_agent.h",
"inspector_event_breakpoints_agent.cc",
"inspector_event_breakpoints_agent.h",
"inspector_diff.cc",
"inspector_diff.h",
"inspector_emulation_agent.cc",
"inspector_emulation_agent.h",
"inspector_frontend_client.h",
"inspector_ghost_rules.cc",
"inspector_ghost_rules.h",
"inspector_highlight.cc",
"inspector_highlight.h",
"inspector_history.cc",
"inspector_history.h",
"inspector_io_agent.cc",
"inspector_io_agent.h",
"inspector_issue.cc",
"inspector_issue.h",
"inspector_issue_conversion.cc",
"inspector_issue_conversion.h",
"inspector_issue_reporter.cc",
"inspector_issue_reporter.h",
"inspector_issue_storage.cc",
"inspector_issue_storage.h",
"inspector_layer_tree_agent.cc",
"inspector_layer_tree_agent.h",
"inspector_log_agent.cc",
"inspector_log_agent.h",
"inspector_media_agent.cc",
"inspector_media_agent.h",
"inspector_media_context_impl.cc",
"inspector_media_context_impl.h",
"inspector_memory_agent.cc",
"inspector_memory_agent.h",
"inspector_network_agent.cc",
"inspector_network_agent.h",
"inspector_preload_agent.cc",
"inspector_preload_agent.h",
"inspector_overlay_agent.cc",
"inspector_overlay_agent.h",
"inspector_overlay_host.cc",
"inspector_overlay_host.h",
"inspector_page_agent.cc",
"inspector_page_agent.h",
"inspector_performance_agent.cc",
"inspector_performance_agent.h",
"inspector_performance_timeline_agent.cc",
"inspector_performance_timeline_agent.h",
"inspector_resource_container.cc",
"inspector_resource_container.h",
"inspector_resource_content_loader.cc",
"inspector_resource_content_loader.h",
"inspector_session_state.cc",
"inspector_session_state.h",
"inspector_style_resolver.cc",
"inspector_style_resolver.h",
"inspector_contrast.cc",
"inspector_contrast.h",
"inspector_style_sheet.cc",
"inspector_style_sheet.h",
"inspector_task_runner.cc",
"inspector_task_runner.h",
"inspector_trace_events.cc",
"inspector_trace_events.h",
"invalidation_set_to_selector_map.cc",
"invalidation_set_to_selector_map.h",
"legacy_dom_snapshot_agent.cc",
"legacy_dom_snapshot_agent.h",
"locale_controller.cc",
"locale_controller.h",
"main_thread_debugger.cc",
"main_thread_debugger.h",
"network_resources_data.cc",
"network_resources_data.h",
"node_content_visibility_state.h",
"request_debug_header_scope.cc",
"request_debug_header_scope.h",
"resolve_node.cc",
"resolve_node.h",
"style_rule_to_style_sheet_contents_map.cc",
"style_rule_to_style_sheet_contents_map.h",
"thread_debugger_common_impl.cc",
"thread_debugger_common_impl.h",
"v8_inspector_string.cc",
"v8_inspector_string.h",
"worker_devtools_params.h",
"worker_inspector_controller.cc",
"worker_inspector_controller.h",
"worker_thread_debugger.cc",
"worker_thread_debugger.h",
]
blink_core_tests_inspector = [
"agent_registry_test.cc",
"inspected_frames_test.cc",
"inspector_contrast_test.cc",
"inspector_css_agent_test.cc",
"inspector_css_parser_observer_test.cc",
"inspector_diff_test.cc",
"inspector_emulation_agent_test.cc",
"inspector_ghost_rules_test.cc",
"inspector_highlight_test.cc",
"inspector_history_test.cc",
"inspector_preload_agent_unittest.cc",
"inspector_media_context_impl_unittest.cc",
"inspector_session_state_test.cc",
"inspector_style_resolver_test.cc",
"invalidation_set_to_selector_map_test.cc",
"main_thread_debugger_test.cc",
"protocol_parser_test.cc",
"protocol_unittest.cc",
]
|