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

Unified Diff: third_party/WebKit/Source/core/inspector/BUILD.gn

Issue 1670813003: DevTools: do not use platform/ to load injected scripts into inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/core/inspector/BUILD.gn
diff --git a/third_party/WebKit/Source/core/inspector/BUILD.gn b/third_party/WebKit/Source/core/inspector/BUILD.gn
index 916f47d678b33e0d7121be89cba5044d109681bb..6600d6867c49d6e334a9190dcb7bfbecbbf56ba3 100644
--- a/third_party/WebKit/Source/core/inspector/BUILD.gn
+++ b/third_party/WebKit/Source/core/inspector/BUILD.gn
@@ -77,3 +77,15 @@ action("protocol_version") {
rebase_path(protocol_file, root_build_dir),
]
}
+
+convert_file_to_header_with_character_array("injected_script_source") {
+ input_file_path = "v8/InjectedScriptSource.js"
+ output_file_path = "$blink_core_output_dir/InjectedScriptSource.h"
+ character_array_name = "InjectedScriptSource_js"
+}
+
+convert_file_to_header_with_character_array("debugger_script") {
+ input_file_path = "v8/DebuggerScript.js"
+ output_file_path = "$blink_core_output_dir/DebuggerScript.h"
+ character_array_name = "DebuggerScript_js"
+}

Powered by Google App Engine
This is Rietveld 408576698