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

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

Issue 2044563002: [DevTools] Added missing inputs for protocol_version action (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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 | « no previous file | third_party/WebKit/Source/core/inspector/inspector.gyp » ('j') | 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 7
8 action("instrumentation_sources") { 8 action("instrumentation_sources") {
9 script = "CodeGeneratorInstrumentation.py" 9 script = "CodeGeneratorInstrumentation.py"
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 "core/inspector/protocol", 114 "core/inspector/protocol",
115 ] 115 ]
116 } 116 }
117 117
118 action("protocol_version") { 118 action("protocol_version") {
119 script = 119 script =
120 "../../platform/inspector_protocol/generate-inspector-protocol-version" 120 "../../platform/inspector_protocol/generate-inspector-protocol-version"
121 121
122 inputs = [ 122 inputs = [
123 "browser_protocol.json", 123 "browser_protocol.json",
124 "../../platform/v8_inspector/js_protocol.json",
124 ] 125 ]
125 output_file = "$blink_core_output_dir/inspector/protocol.json" 126 output_file = "$blink_core_output_dir/inspector/protocol.json"
126 outputs = [ 127 outputs = [
127 output_file, 128 output_file,
128 ] 129 ]
129 130
130 args = [ 131 args = [
131 "--o", 132 "--o",
132 rebase_path(output_file, root_build_dir), 133 rebase_path(output_file, root_build_dir),
133 rebase_path("browser_protocol.json", root_build_dir), 134 rebase_path("browser_protocol.json", root_build_dir),
134 rebase_path("../../platform/v8_inspector/js_protocol.json", root_build_dir), 135 rebase_path("../../platform/v8_inspector/js_protocol.json", root_build_dir),
135 ] 136 ]
136 } 137 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/inspector/inspector.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698