| 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( | 7 import( |
| 8 "//third_party/WebKit/Source/platform/inspector_protocol/inspector_protocol.
gni") | 8 "//third_party/WebKit/Source/platform/inspector_protocol/inspector_protocol.
gni") |
| 9 import("//v8/gni/v8.gni") | 9 import("//v8/gni/v8.gni") |
| 10 | 10 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 "inspector/protocol/Protocol.h", | 181 "inspector/protocol/Protocol.h", |
| 182 "inspector/protocol/Rendering.cpp", | 182 "inspector/protocol/Rendering.cpp", |
| 183 "inspector/protocol/Rendering.h", | 183 "inspector/protocol/Rendering.h", |
| 184 "inspector/protocol/Runtime.h", | 184 "inspector/protocol/Runtime.h", |
| 185 "inspector/protocol/Security.cpp", | 185 "inspector/protocol/Security.cpp", |
| 186 "inspector/protocol/Security.h", | 186 "inspector/protocol/Security.h", |
| 187 "inspector/protocol/ServiceWorker.cpp", | 187 "inspector/protocol/ServiceWorker.cpp", |
| 188 "inspector/protocol/ServiceWorker.h", | 188 "inspector/protocol/ServiceWorker.h", |
| 189 "inspector/protocol/Storage.cpp", | 189 "inspector/protocol/Storage.cpp", |
| 190 "inspector/protocol/Storage.h", | 190 "inspector/protocol/Storage.h", |
| 191 "inspector/protocol/Target.cpp", |
| 192 "inspector/protocol/Target.h", |
| 191 "inspector/protocol/Tracing.cpp", | 193 "inspector/protocol/Tracing.cpp", |
| 192 "inspector/protocol/Tracing.h", | 194 "inspector/protocol/Tracing.h", |
| 193 "inspector/protocol/Worker.cpp", | |
| 194 "inspector/protocol/Worker.h", | |
| 195 ] | 195 ] |
| 196 | 196 |
| 197 deps = [ | 197 deps = [ |
| 198 ":protocol_version", | 198 ":protocol_version", |
| 199 ] | 199 ] |
| 200 } | 200 } |
| 201 | 201 |
| 202 # Compiles the sources generated above. | 202 # Compiles the sources generated above. |
| 203 source_set("generated") { | 203 source_set("generated") { |
| 204 sources = get_target_outputs(":protocol_sources") + | 204 sources = get_target_outputs(":protocol_sources") + |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 outputs = [ | 258 outputs = [ |
| 259 output_file, | 259 output_file, |
| 260 ] | 260 ] |
| 261 | 261 |
| 262 args = [ | 262 args = [ |
| 263 rebase_path("browser_protocol.json", root_build_dir), | 263 rebase_path("browser_protocol.json", root_build_dir), |
| 264 rebase_path(v8_inspector_js_protocol, root_build_dir), | 264 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 265 rebase_path(output_file, root_build_dir), | 265 rebase_path(output_file, root_build_dir), |
| 266 ] | 266 ] |
| 267 } | 267 } |
| OLD | NEW |