| 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 "InspectorFrontendClient.h", |
| 40 "InspectorHighlight.cpp", | 41 "InspectorHighlight.cpp", |
| 41 "InspectorHighlight.h", | 42 "InspectorHighlight.h", |
| 42 "InspectorHistory.cpp", | 43 "InspectorHistory.cpp", |
| 43 "InspectorHistory.h", | 44 "InspectorHistory.h", |
| 44 "InspectorInputAgent.cpp", | 45 "InspectorInputAgent.cpp", |
| 45 "InspectorInputAgent.h", | 46 "InspectorInputAgent.h", |
| 46 "InspectorInstrumentation.cpp", | 47 "InspectorInstrumentation.cpp", |
| 47 "InspectorInstrumentation.h", | 48 "InspectorInstrumentation.h", |
| 49 "InspectorInstrumentationCustomInl.h", |
| 48 "InspectorLayerTreeAgent.cpp", | 50 "InspectorLayerTreeAgent.cpp", |
| 49 "InspectorLayerTreeAgent.h", | 51 "InspectorLayerTreeAgent.h", |
| 50 "InspectorLogAgent.cpp", | 52 "InspectorLogAgent.cpp", |
| 51 "InspectorLogAgent.h", | 53 "InspectorLogAgent.h", |
| 52 "InspectorMemoryAgent.cpp", | 54 "InspectorMemoryAgent.cpp", |
| 53 "InspectorMemoryAgent.h", | 55 "InspectorMemoryAgent.h", |
| 54 "InspectorNetworkAgent.cpp", | 56 "InspectorNetworkAgent.cpp", |
| 55 "InspectorNetworkAgent.h", | 57 "InspectorNetworkAgent.h", |
| 56 "InspectorOverlayHost.cpp", | 58 "InspectorOverlayHost.cpp", |
| 57 "InspectorOverlayHost.h", | 59 "InspectorOverlayHost.h", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 outputs = [ | 262 outputs = [ |
| 261 output_file, | 263 output_file, |
| 262 ] | 264 ] |
| 263 | 265 |
| 264 args = [ | 266 args = [ |
| 265 rebase_path("browser_protocol.json", root_build_dir), | 267 rebase_path("browser_protocol.json", root_build_dir), |
| 266 rebase_path(v8_inspector_js_protocol, root_build_dir), | 268 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 267 rebase_path(output_file, root_build_dir), | 269 rebase_path(output_file, root_build_dir), |
| 268 ] | 270 ] |
| 269 } | 271 } |
| OLD | NEW |