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