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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 | 212 |
213 if (is_win) { | 213 if (is_win) { |
214 cflags = [ "/wd4702" ] # Unreachable code. | 214 cflags = [ "/wd4702" ] # Unreachable code. |
215 } | 215 } |
216 | 216 |
217 deps = [ | 217 deps = [ |
218 ":instrumentation_sources", | 218 ":instrumentation_sources", |
219 ":protocol_sources", | 219 ":protocol_sources", |
220 "//skia", | 220 "//skia", |
221 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", | 221 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", |
| 222 "//third_party/WebKit/Source/core:all_generators", |
| 223 "//third_party/WebKit/Source/platform:make_platform_generated", |
222 "//third_party/WebKit/Source/wtf", | 224 "//third_party/WebKit/Source/wtf", |
223 "//v8", | 225 "//v8", |
224 ] | 226 ] |
225 } | 227 } |
226 | 228 |
227 action("protocol_compatibility_check") { | 229 action("protocol_compatibility_check") { |
228 script = "../../platform/inspector_protocol/CheckProtocolCompatibility.py" | 230 script = "../../platform/inspector_protocol/CheckProtocolCompatibility.py" |
229 | 231 |
230 inputs = [ | 232 inputs = [ |
231 "browser_protocol.json", | 233 "browser_protocol.json", |
(...skipping 26 matching lines...) Expand all Loading... |
258 outputs = [ | 260 outputs = [ |
259 output_file, | 261 output_file, |
260 ] | 262 ] |
261 | 263 |
262 args = [ | 264 args = [ |
263 rebase_path("browser_protocol.json", root_build_dir), | 265 rebase_path("browser_protocol.json", root_build_dir), |
264 rebase_path(v8_inspector_js_protocol, root_build_dir), | 266 rebase_path(v8_inspector_js_protocol, root_build_dir), |
265 rebase_path(output_file, root_build_dir), | 267 rebase_path(output_file, root_build_dir), |
266 ] | 268 ] |
267 } | 269 } |
OLD | NEW |