| 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("//third_party/WebKit/Source/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 6 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 import("//third_party/inspector_protocol/inspector_protocol.gni") | 7 import("//third_party/inspector_protocol/inspector_protocol.gni") |
| 8 import("//v8/gni/v8.gni") | 8 import("//v8/gni/v8.gni") |
| 9 | 9 |
| 10 _inspector_protocol_dir = "//third_party/inspector_protocol" | 10 _inspector_protocol_dir = "//third_party/inspector_protocol" |
| 11 | 11 |
| 12 blink_core_sources("inspector") { | 12 blink_core_sources("inspector") { |
| 13 sources = [ | 13 sources = [ |
| 14 "AddStringToDigestor.cpp", |
| 15 "AddStringToDigestor.h", |
| 14 "ConsoleMessage.cpp", | 16 "ConsoleMessage.cpp", |
| 15 "ConsoleMessage.h", | 17 "ConsoleMessage.h", |
| 16 "ConsoleMessageStorage.cpp", | 18 "ConsoleMessageStorage.cpp", |
| 17 "ConsoleMessageStorage.h", | 19 "ConsoleMessageStorage.h", |
| 18 "ConsoleTypes.h", | 20 "ConsoleTypes.h", |
| 19 "DOMEditor.cpp", | 21 "DOMEditor.cpp", |
| 20 "DOMEditor.h", | 22 "DOMEditor.h", |
| 21 "DOMPatchSupport.cpp", | 23 "DOMPatchSupport.cpp", |
| 22 "DOMPatchSupport.h", | 24 "DOMPatchSupport.h", |
| 23 "DevToolsEmulator.cpp", | 25 "DevToolsEmulator.cpp", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "ThreadDebugger.h", | 90 "ThreadDebugger.h", |
| 89 "V8InspectorString.cpp", | 91 "V8InspectorString.cpp", |
| 90 "V8InspectorString.h", | 92 "V8InspectorString.h", |
| 91 "WorkerInspectorController.cpp", | 93 "WorkerInspectorController.cpp", |
| 92 "WorkerInspectorController.h", | 94 "WorkerInspectorController.h", |
| 93 "WorkerThreadDebugger.cpp", | 95 "WorkerThreadDebugger.cpp", |
| 94 "WorkerThreadDebugger.h", | 96 "WorkerThreadDebugger.h", |
| 95 ] | 97 ] |
| 96 | 98 |
| 97 jumbo_excluded_sources = [ | 99 jumbo_excluded_sources = [ |
| 98 # Collides with DOMPatchSupport.cpp (patch incoming) | |
| 99 "InspectorAnimationAgent.cpp", | |
| 100 | |
| 101 # Collides with InspectorPageAgent.cpp and | 100 # Collides with InspectorPageAgent.cpp and |
| 102 # NetworkResourcesData.cpp (patch incoming) | 101 # NetworkResourcesData.cpp (patch incoming) |
| 103 "InspectorNetworkAgent.cpp", | 102 "InspectorNetworkAgent.cpp", |
| 104 | 103 |
| 105 # Collides with InspectorPageAgent.cpp (patch incoming) | 104 # Collides with InspectorPageAgent.cpp (patch incoming) |
| 106 "MainThreadDebugger.cpp", | 105 "MainThreadDebugger.cpp", |
| 107 | 106 |
| 108 "InspectorOverlayAgent.cpp", # Way too many different "Response" | 107 "InspectorOverlayAgent.cpp", # Way too many different "Response" |
| 109 "InspectorEmulationAgent.cpp", # Way too many different "Response" | 108 "InspectorEmulationAgent.cpp", # Way too many different "Response" |
| 110 ] | 109 ] |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 outputs = [ | 252 outputs = [ |
| 254 output_file, | 253 output_file, |
| 255 ] | 254 ] |
| 256 | 255 |
| 257 args = [ | 256 args = [ |
| 258 rebase_path("browser_protocol.json", root_build_dir), | 257 rebase_path("browser_protocol.json", root_build_dir), |
| 259 rebase_path(v8_inspector_js_protocol, root_build_dir), | 258 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 260 rebase_path(output_file, root_build_dir), | 259 rebase_path(output_file, root_build_dir), |
| 261 ] | 260 ] |
| 262 } | 261 } |
| OLD | NEW |