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

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

Issue 2807123005: [instrumentation] Fix probe/BUILD.gn dependencies (Closed)
Patch Set: proper fix Created 3 years, 8 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/probe/BUILD.gn » ('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 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/probe/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698