| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 "inspector/protocol/IO.cpp", | 141 "inspector/protocol/IO.cpp", |
| 142 "inspector/protocol/IO.h", | 142 "inspector/protocol/IO.h", |
| 143 "inspector/protocol/LayerTree.cpp", | 143 "inspector/protocol/LayerTree.cpp", |
| 144 "inspector/protocol/LayerTree.h", | 144 "inspector/protocol/LayerTree.h", |
| 145 "inspector/protocol/Log.cpp", | 145 "inspector/protocol/Log.cpp", |
| 146 "inspector/protocol/Log.h", | 146 "inspector/protocol/Log.h", |
| 147 "inspector/protocol/Memory.cpp", | 147 "inspector/protocol/Memory.cpp", |
| 148 "inspector/protocol/Memory.h", | 148 "inspector/protocol/Memory.h", |
| 149 "inspector/protocol/Network.cpp", | 149 "inspector/protocol/Network.cpp", |
| 150 "inspector/protocol/Network.h", | 150 "inspector/protocol/Network.h", |
| 151 "inspector/protocol/Overlay.cpp", | |
| 152 "inspector/protocol/Overlay.h", | |
| 153 "inspector/protocol/Page.cpp", | 151 "inspector/protocol/Page.cpp", |
| 154 "inspector/protocol/Page.h", | 152 "inspector/protocol/Page.h", |
| 155 "inspector/protocol/Protocol.cpp", | 153 "inspector/protocol/Protocol.cpp", |
| 156 "inspector/protocol/Protocol.h", | 154 "inspector/protocol/Protocol.h", |
| 155 "inspector/protocol/Rendering.cpp", |
| 156 "inspector/protocol/Rendering.h", |
| 157 "inspector/protocol/Runtime.h", | 157 "inspector/protocol/Runtime.h", |
| 158 "inspector/protocol/Security.cpp", | 158 "inspector/protocol/Security.cpp", |
| 159 "inspector/protocol/Security.h", | 159 "inspector/protocol/Security.h", |
| 160 "inspector/protocol/Target.cpp", | 160 "inspector/protocol/Target.cpp", |
| 161 "inspector/protocol/Target.h", | 161 "inspector/protocol/Target.h", |
| 162 "inspector/protocol/Tracing.cpp", | 162 "inspector/protocol/Tracing.cpp", |
| 163 "inspector/protocol/Tracing.h", | 163 "inspector/protocol/Tracing.h", |
| 164 ] | 164 ] |
| 165 | 165 |
| 166 deps = [ | 166 deps = [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 outputs = [ | 228 outputs = [ |
| 229 output_file, | 229 output_file, |
| 230 ] | 230 ] |
| 231 | 231 |
| 232 args = [ | 232 args = [ |
| 233 rebase_path("browser_protocol.json", root_build_dir), | 233 rebase_path("browser_protocol.json", root_build_dir), |
| 234 rebase_path(v8_inspector_js_protocol, root_build_dir), | 234 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 235 rebase_path(output_file, root_build_dir), | 235 rebase_path(output_file, root_build_dir), |
| 236 ] | 236 ] |
| 237 } | 237 } |
| OLD | NEW |