| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "inspector/protocol/DOM.h", | 157 "inspector/protocol/DOM.h", |
| 158 "inspector/protocol/DOMStorage.cpp", | 158 "inspector/protocol/DOMStorage.cpp", |
| 159 "inspector/protocol/DOMStorage.h", | 159 "inspector/protocol/DOMStorage.h", |
| 160 "inspector/protocol/Emulation.cpp", | 160 "inspector/protocol/Emulation.cpp", |
| 161 "inspector/protocol/Emulation.h", | 161 "inspector/protocol/Emulation.h", |
| 162 "inspector/protocol/Forward.h", | 162 "inspector/protocol/Forward.h", |
| 163 "inspector/protocol/IndexedDB.cpp", | 163 "inspector/protocol/IndexedDB.cpp", |
| 164 "inspector/protocol/IndexedDB.h", | 164 "inspector/protocol/IndexedDB.h", |
| 165 "inspector/protocol/Input.cpp", | 165 "inspector/protocol/Input.cpp", |
| 166 "inspector/protocol/Input.h", | 166 "inspector/protocol/Input.h", |
| 167 "inspector/protocol/Inspector.cpp", | |
| 168 "inspector/protocol/Inspector.h", | |
| 169 "inspector/protocol/IO.cpp", | 167 "inspector/protocol/IO.cpp", |
| 170 "inspector/protocol/IO.h", | 168 "inspector/protocol/IO.h", |
| 171 "inspector/protocol/LayerTree.cpp", | 169 "inspector/protocol/LayerTree.cpp", |
| 172 "inspector/protocol/LayerTree.h", | 170 "inspector/protocol/LayerTree.h", |
| 173 "inspector/protocol/Log.cpp", | 171 "inspector/protocol/Log.cpp", |
| 174 "inspector/protocol/Log.h", | 172 "inspector/protocol/Log.h", |
| 175 "inspector/protocol/Memory.cpp", | 173 "inspector/protocol/Memory.cpp", |
| 176 "inspector/protocol/Memory.h", | 174 "inspector/protocol/Memory.h", |
| 177 "inspector/protocol/Network.cpp", | 175 "inspector/protocol/Network.cpp", |
| 178 "inspector/protocol/Network.h", | 176 "inspector/protocol/Network.h", |
| 179 "inspector/protocol/Page.cpp", | 177 "inspector/protocol/Page.cpp", |
| 180 "inspector/protocol/Page.h", | 178 "inspector/protocol/Page.h", |
| 181 "inspector/protocol/Protocol.cpp", | 179 "inspector/protocol/Protocol.cpp", |
| 182 "inspector/protocol/Protocol.h", | 180 "inspector/protocol/Protocol.h", |
| 183 "inspector/protocol/Rendering.cpp", | 181 "inspector/protocol/Rendering.cpp", |
| 184 "inspector/protocol/Rendering.h", | 182 "inspector/protocol/Rendering.h", |
| 185 "inspector/protocol/Runtime.h", | 183 "inspector/protocol/Runtime.h", |
| 186 "inspector/protocol/Security.cpp", | 184 "inspector/protocol/Security.cpp", |
| 187 "inspector/protocol/Security.h", | 185 "inspector/protocol/Security.h", |
| 188 "inspector/protocol/ServiceWorker.cpp", | |
| 189 "inspector/protocol/ServiceWorker.h", | |
| 190 "inspector/protocol/Storage.cpp", | |
| 191 "inspector/protocol/Storage.h", | |
| 192 "inspector/protocol/Target.cpp", | 186 "inspector/protocol/Target.cpp", |
| 193 "inspector/protocol/Target.h", | 187 "inspector/protocol/Target.h", |
| 194 "inspector/protocol/Tracing.cpp", | 188 "inspector/protocol/Tracing.cpp", |
| 195 "inspector/protocol/Tracing.h", | 189 "inspector/protocol/Tracing.h", |
| 196 ] | 190 ] |
| 197 | 191 |
| 198 deps = [ | 192 deps = [ |
| 199 ":protocol_version", | 193 ":protocol_version", |
| 200 ] | 194 ] |
| 201 } | 195 } |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 outputs = [ | 255 outputs = [ |
| 262 output_file, | 256 output_file, |
| 263 ] | 257 ] |
| 264 | 258 |
| 265 args = [ | 259 args = [ |
| 266 rebase_path("browser_protocol.json", root_build_dir), | 260 rebase_path("browser_protocol.json", root_build_dir), |
| 267 rebase_path(v8_inspector_js_protocol, root_build_dir), | 261 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 268 rebase_path(output_file, root_build_dir), | 262 rebase_path(output_file, root_build_dir), |
| 269 ] | 263 ] |
| 270 } | 264 } |
| OLD | NEW |