| 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" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "InspectorAnimationAgent.h", | 32 "InspectorAnimationAgent.h", |
| 33 "InspectorApplicationCacheAgent.cpp", | 33 "InspectorApplicationCacheAgent.cpp", |
| 34 "InspectorApplicationCacheAgent.h", | 34 "InspectorApplicationCacheAgent.h", |
| 35 "InspectorBaseAgent.h", | 35 "InspectorBaseAgent.h", |
| 36 "InspectorCSSAgent.cpp", | 36 "InspectorCSSAgent.cpp", |
| 37 "InspectorCSSAgent.h", | 37 "InspectorCSSAgent.h", |
| 38 "InspectorDOMAgent.cpp", | 38 "InspectorDOMAgent.cpp", |
| 39 "InspectorDOMAgent.h", | 39 "InspectorDOMAgent.h", |
| 40 "InspectorDOMDebuggerAgent.cpp", | 40 "InspectorDOMDebuggerAgent.cpp", |
| 41 "InspectorDOMDebuggerAgent.h", | 41 "InspectorDOMDebuggerAgent.h", |
| 42 "InspectorDOMSnapshotAgent.cpp", |
| 43 "InspectorDOMSnapshotAgent.h", |
| 42 "InspectorEmulationAgent.cpp", | 44 "InspectorEmulationAgent.cpp", |
| 43 "InspectorEmulationAgent.h", | 45 "InspectorEmulationAgent.h", |
| 44 "InspectorFrontendClient.h", | 46 "InspectorFrontendClient.h", |
| 45 "InspectorHighlight.cpp", | 47 "InspectorHighlight.cpp", |
| 46 "InspectorHighlight.h", | 48 "InspectorHighlight.h", |
| 47 "InspectorHistory.cpp", | 49 "InspectorHistory.cpp", |
| 48 "InspectorHistory.h", | 50 "InspectorHistory.h", |
| 49 "InspectorInputAgent.cpp", | 51 "InspectorInputAgent.cpp", |
| 50 "InspectorInputAgent.h", | 52 "InspectorInputAgent.h", |
| 51 "InspectorLayerTreeAgent.cpp", | 53 "InspectorLayerTreeAgent.cpp", |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "inspector/protocol/CSS.h", | 128 "inspector/protocol/CSS.h", |
| 127 "inspector/protocol/Database.cpp", | 129 "inspector/protocol/Database.cpp", |
| 128 "inspector/protocol/Database.h", | 130 "inspector/protocol/Database.h", |
| 129 "inspector/protocol/Debugger.h", | 131 "inspector/protocol/Debugger.h", |
| 130 "inspector/protocol/DeviceOrientation.cpp", | 132 "inspector/protocol/DeviceOrientation.cpp", |
| 131 "inspector/protocol/DeviceOrientation.h", | 133 "inspector/protocol/DeviceOrientation.h", |
| 132 "inspector/protocol/DOM.cpp", | 134 "inspector/protocol/DOM.cpp", |
| 133 "inspector/protocol/DOMDebugger.cpp", | 135 "inspector/protocol/DOMDebugger.cpp", |
| 134 "inspector/protocol/DOMDebugger.h", | 136 "inspector/protocol/DOMDebugger.h", |
| 135 "inspector/protocol/DOM.h", | 137 "inspector/protocol/DOM.h", |
| 138 "inspector/protocol/DOMSnapshot.cpp", |
| 139 "inspector/protocol/DOMSnapshot.h", |
| 136 "inspector/protocol/DOMStorage.cpp", | 140 "inspector/protocol/DOMStorage.cpp", |
| 137 "inspector/protocol/DOMStorage.h", | 141 "inspector/protocol/DOMStorage.h", |
| 138 "inspector/protocol/Emulation.cpp", | 142 "inspector/protocol/Emulation.cpp", |
| 139 "inspector/protocol/Emulation.h", | 143 "inspector/protocol/Emulation.h", |
| 140 "inspector/protocol/Forward.h", | 144 "inspector/protocol/Forward.h", |
| 141 "inspector/protocol/IndexedDB.cpp", | 145 "inspector/protocol/IndexedDB.cpp", |
| 142 "inspector/protocol/IndexedDB.h", | 146 "inspector/protocol/IndexedDB.h", |
| 143 "inspector/protocol/Input.cpp", | 147 "inspector/protocol/Input.cpp", |
| 144 "inspector/protocol/Input.h", | 148 "inspector/protocol/Input.h", |
| 145 "inspector/protocol/IO.cpp", | 149 "inspector/protocol/IO.cpp", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 outputs = [ | 236 outputs = [ |
| 233 output_file, | 237 output_file, |
| 234 ] | 238 ] |
| 235 | 239 |
| 236 args = [ | 240 args = [ |
| 237 rebase_path("browser_protocol.json", root_build_dir), | 241 rebase_path("browser_protocol.json", root_build_dir), |
| 238 rebase_path(v8_inspector_js_protocol, root_build_dir), | 242 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 239 rebase_path(output_file, root_build_dir), | 243 rebase_path(output_file, root_build_dir), |
| 240 ] | 244 ] |
| 241 } | 245 } |
| OLD | NEW |