| 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 26 matching lines...) Expand all Loading... |
| 37 "InspectorDOMDebuggerAgent.cpp", | 37 "InspectorDOMDebuggerAgent.cpp", |
| 38 "InspectorDOMDebuggerAgent.h", | 38 "InspectorDOMDebuggerAgent.h", |
| 39 "InspectorHighlight.cpp", | 39 "InspectorHighlight.cpp", |
| 40 "InspectorHighlight.h", | 40 "InspectorHighlight.h", |
| 41 "InspectorHistory.cpp", | 41 "InspectorHistory.cpp", |
| 42 "InspectorHistory.h", | 42 "InspectorHistory.h", |
| 43 "InspectorInputAgent.cpp", | 43 "InspectorInputAgent.cpp", |
| 44 "InspectorInputAgent.h", | 44 "InspectorInputAgent.h", |
| 45 "InspectorInstrumentation.cpp", | 45 "InspectorInstrumentation.cpp", |
| 46 "InspectorInstrumentation.h", | 46 "InspectorInstrumentation.h", |
| 47 "InspectorInstrumentationCustomInl.h", | |
| 48 "InspectorLayerTreeAgent.cpp", | 47 "InspectorLayerTreeAgent.cpp", |
| 49 "InspectorLayerTreeAgent.h", | 48 "InspectorLayerTreeAgent.h", |
| 50 "InspectorLogAgent.cpp", | 49 "InspectorLogAgent.cpp", |
| 51 "InspectorLogAgent.h", | 50 "InspectorLogAgent.h", |
| 52 "InspectorMemoryAgent.cpp", | 51 "InspectorMemoryAgent.cpp", |
| 53 "InspectorMemoryAgent.h", | 52 "InspectorMemoryAgent.h", |
| 54 "InspectorNetworkAgent.cpp", | 53 "InspectorNetworkAgent.cpp", |
| 55 "InspectorNetworkAgent.h", | 54 "InspectorNetworkAgent.h", |
| 56 "InspectorOverlayHost.cpp", | 55 "InspectorOverlayHost.cpp", |
| 57 "InspectorOverlayHost.h", | 56 "InspectorOverlayHost.h", |
| (...skipping 195 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 |