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

Unified Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2109243003: Introduce --remote-debugging-frontend switch for custom remote debugging front-end (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: support absolute path instead of HTTP endpoint 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/BUILD.gn
diff --git a/third_party/WebKit/Source/devtools/BUILD.gn b/third_party/WebKit/Source/devtools/BUILD.gn
index 2dd270ae47821f851e44228c60ec18bf54905801..ef114cba2eb9fdb0987dbc08f578a30b74f6d50f 100644
--- a/third_party/WebKit/Source/devtools/BUILD.gn
+++ b/third_party/WebKit/Source/devtools/BUILD.gn
@@ -67,8 +67,8 @@ resources_out_dir_no_slash = "$root_out_dir/resources/inspector"
resources_out_dir = resources_out_dir_no_slash + "/"
generated_scripts = [
- resources_out_dir + "InspectorBackendCommands.js",
- resources_out_dir + "SupportedCSSProperties.js",
+ resources_out_dir + "gen/InspectorBackendCommands.js",
+ resources_out_dir + "gen/SupportedCSSProperties.js",
]
#-------------------------------------------------------------------------------
@@ -216,7 +216,7 @@ action("supported_css_properties") {
]
outputs = [
- resources_out_dir + "SupportedCSSProperties.js",
+ resources_out_dir + "gen/SupportedCSSProperties.js",
]
args =
@@ -232,7 +232,7 @@ action("frontend_protocol_sources") {
"$blink_core_output_dir/inspector/protocol.json",
]
outputs = [
- resources_out_dir + "InspectorBackendCommands.js",
+ resources_out_dir + "gen/InspectorBackendCommands.js",
]
args = rebase_path(inputs, root_build_dir) + [

Powered by Google App Engine
This is Rietveld 408576698