| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 | 180 |
| 181 if (is_win) { | 181 if (is_win) { |
| 182 cflags = [ "/wd4702" ] # Unreachable code. | 182 cflags = [ "/wd4702" ] # Unreachable code. |
| 183 } | 183 } |
| 184 | 184 |
| 185 deps = [ | 185 deps = [ |
| 186 ":protocol_sources", | 186 ":protocol_sources", |
| 187 "//skia", | 187 "//skia", |
| 188 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", | 188 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", |
| 189 "//third_party/WebKit/Source/core:all_generators", | 189 "//third_party/WebKit/Source/core:all_generators", |
| 190 "//third_party/WebKit/Source/core/probe:generated", |
| 190 "//third_party/WebKit/Source/platform:make_platform_generated", | 191 "//third_party/WebKit/Source/platform:make_platform_generated", |
| 191 "//third_party/WebKit/Source/platform/wtf", | 192 "//third_party/WebKit/Source/platform/wtf", |
| 192 "//v8", | 193 "//v8", |
| 193 ] | 194 ] |
| 194 } | 195 } |
| 195 | 196 |
| 196 action("protocol_compatibility_check") { | 197 action("protocol_compatibility_check") { |
| 197 script = _inspector_protocol_dir + "/CheckProtocolCompatibility.py" | 198 script = _inspector_protocol_dir + "/CheckProtocolCompatibility.py" |
| 198 | 199 |
| 199 inputs = [ | 200 inputs = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 227 outputs = [ | 228 outputs = [ |
| 228 output_file, | 229 output_file, |
| 229 ] | 230 ] |
| 230 | 231 |
| 231 args = [ | 232 args = [ |
| 232 rebase_path("browser_protocol.json", root_build_dir), | 233 rebase_path("browser_protocol.json", root_build_dir), |
| 233 rebase_path(v8_inspector_js_protocol, root_build_dir), | 234 rebase_path(v8_inspector_js_protocol, root_build_dir), |
| 234 rebase_path(output_file, root_build_dir), | 235 rebase_path(output_file, root_build_dir), |
| 235 ] | 236 ] |
| 236 } | 237 } |
| OLD | NEW |