Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: third_party/WebKit/Source/core/inspector/BUILD.gn

Issue 2452473004: Fix a large number of missing dependencies in the blink gn build (Closed)
Patch Set: rebase (make_core_generated_input_mode_names was added meanwhile) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/core.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/core.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698