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

Unified Diff: Source/devtools/devtools.gyp

Issue 283063003: DevTools: Implement extension-based status bar buttons (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Get rid of components/module.json Created 6 years, 7 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: Source/devtools/devtools.gyp
diff --git a/Source/devtools/devtools.gyp b/Source/devtools/devtools.gyp
index 74a3162d87e9a18a21ffcec96911edf71078b557..3833ec09359d3e99158558c63145354d62811bf9 100644
--- a/Source/devtools/devtools.gyp
+++ b/Source/devtools/devtools.gyp
@@ -131,6 +131,7 @@
'<(PRODUCT_DIR)/resources/inspector/extensions/ExtensionServer.js',
'<(PRODUCT_DIR)/resources/inspector/resources/ResourcesPanel.js',
'<(PRODUCT_DIR)/resources/inspector/network/NetworkPanel.js',
+ '<(PRODUCT_DIR)/resources/inspector/settings/SettingsScreen.js',
'<(PRODUCT_DIR)/resources/inspector/source_frame/SourceFrame.js',
'<(PRODUCT_DIR)/resources/inspector/sources/SourcesPanel.js',
'<(PRODUCT_DIR)/resources/inspector/timeline/TimelinePanel.js',
@@ -301,7 +302,6 @@
'destination': '<(PRODUCT_DIR)/resources/inspector/components',
'files': [
'<@(devtools_components_js_files)',
- 'front_end/components/module.json',
],
},
{
@@ -708,12 +708,24 @@
'type': 'none',
'conditions': [
['debug_devtools==0', { # Release
+ 'actions': [{
+ 'action_name': 'build_settings_module',
+ 'script_name': 'scripts/inline_js_imports.py',
+ 'input_file': 'front_end/settings/SettingsScreen.js',
+ 'inputs': [
+ '<@(_script_name)',
+ '<@(devtools_settings_js_files)',
+ ],
+ 'outputs': ['<(PRODUCT_DIR)/resources/inspector/settings/SettingsScreen.js'],
+ 'action': ['python', '<@(_script_name)', '<@(_input_file)', '<@(_outputs)'],
+ }],
},
{ # Debug
'copies': [
{
'destination': '<(PRODUCT_DIR)/resources/inspector/settings',
'files': [
+ '<@(devtools_settings_js_files)',
'front_end/settings/module.json',
],
}
« no previous file with comments | « LayoutTests/inspector/open-with-rendering-option-enabled-expected.txt ('k') | Source/devtools/devtools.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698