| 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 16 matching lines...) Expand all Loading... |
| 27 "InspectedFrames.cpp", | 27 "InspectedFrames.cpp", |
| 28 "InspectedFrames.h", | 28 "InspectedFrames.h", |
| 29 "InspectorAnimationAgent.cpp", | 29 "InspectorAnimationAgent.cpp", |
| 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 "InspectorDOMDebuggerAgent.cpp", | 38 "InspectorDOMDebuggerAgent.cpp", |
| 38 "InspectorDOMDebuggerAgent.h", | 39 "InspectorDOMDebuggerAgent.h", |
| 39 "InspectorHighlight.cpp", | 40 "InspectorHighlight.cpp", |
| 40 "InspectorHighlight.h", | 41 "InspectorHighlight.h", |
| 41 "InspectorHistory.cpp", | 42 "InspectorHistory.cpp", |
| 42 "InspectorHistory.h", | 43 "InspectorHistory.h", |
| 43 "InspectorInputAgent.cpp", | 44 "InspectorInputAgent.cpp", |
| 44 "InspectorInputAgent.h", | 45 "InspectorInputAgent.h", |
| 45 "InspectorInstrumentation.cpp", | 46 "InspectorInstrumentation.cpp", |
| 46 "InspectorInstrumentation.h", | 47 "InspectorInstrumentation.h", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 outputs = [ | 258 outputs = [ |
| 258 output_file, | 259 output_file, |
| 259 ] | 260 ] |
| 260 | 261 |
| 261 args = [ | 262 args = [ |
| 262 rebase_path("browser_protocol.json", root_build_dir), | 263 rebase_path("browser_protocol.json", root_build_dir), |
| 263 rebase_path(v8_inspector_js_protocol, root_build_dir), | 264 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 264 rebase_path(output_file, root_build_dir), | 265 rebase_path(output_file, root_build_dir), |
| 265 ] | 266 ] |
| 266 } | 267 } |
| OLD | NEW |