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

Unified Diff: third_party/WebKit/Source/core/core.gyp

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/core.gyp
diff --git a/third_party/WebKit/Source/core/core.gyp b/third_party/WebKit/Source/core/core.gyp
index 1272f453af6e784e64d6e7238276b69b9c420a99..f41b2322939240f3f6e3759d6081669b2da7d3a0 100644
--- a/third_party/WebKit/Source/core/core.gyp
+++ b/third_party/WebKit/Source/core/core.gyp
@@ -102,6 +102,28 @@
]
},
{
+ # GN version: //third_party/WebKit/Source/core/inspector:injected_script_source
+ 'target_name': 'injected_script_source',
+ 'type': 'none',
+ 'variables': {
+ 'input_file_path': 'inspector/v8/InjectedScriptSource.js',
+ 'output_file_path': '<(blink_core_output_dir)/InjectedScriptSource.h',
+ 'character_array_name': 'InjectedScriptSource_js',
+ },
+ 'includes': [ '../build/ConvertFileToHeaderWithCharacterArray.gypi' ],
+ },
+ {
+ # GN version: //third_party/WebKit/Source/core/inspector:debugger_script
+ 'target_name': 'debugger_script',
+ 'type': 'none',
+ 'variables': {
+ 'input_file_path': 'inspector/v8/DebuggerScript.js',
+ 'output_file_path': '<(blink_core_output_dir)/DebuggerScript.h',
+ 'character_array_name': 'DebuggerScript_js',
+ },
+ 'includes': [ '../build/ConvertFileToHeaderWithCharacterArray.gypi' ],
+ },
+ {
# GN version: //third_party/WebKit/Source/core/inspector:instrumentation_sources
'target_name': 'inspector_instrumentation_sources',
'type': 'none',
@@ -170,6 +192,8 @@
'webcore_prerequisites',
'core_generated.gyp:make_core_generated',
'inspector_protocol_sources',
+ 'injected_script_source',
+ 'debugger_script',
'inspector_instrumentation_sources',
'../bindings/core/v8/generated.gyp:bindings_core_v8_generated',
# FIXME: don't depend on bindings_modules http://crbug.com/358074
@@ -235,6 +259,8 @@
'type': 'none',
'dependencies': [
'inspector_protocol_sources',
+ 'injected_script_source',
+ 'debugger_script',
'inspector_instrumentation_sources',
'core_generated.gyp:make_core_generated',
'../bindings/core/v8/generated.gyp:bindings_core_v8_generated',
@@ -650,6 +676,8 @@
# webcore_generated dependency
'core_generated.gyp:make_core_generated',
'inspector_protocol_sources',
+ 'injected_script_source',
+ 'debugger_script',
'inspector_instrumentation_sources',
'../bindings/core/v8/generated.gyp:bindings_core_v8_generated',
# FIXME: don't depend on bindings_modules http://crbug.com/358074

Powered by Google App Engine
This is Rietveld 408576698