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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 ], 124 ],
125 'input_pages': [ 125 'input_pages': [
126 '<(PRODUCT_DIR)/resources/inspector/devtools.html', 126 '<(PRODUCT_DIR)/resources/inspector/devtools.html',
127 '<(PRODUCT_DIR)/resources/inspector/main/Main.js', 127 '<(PRODUCT_DIR)/resources/inspector/main/Main.js',
128 '<(PRODUCT_DIR)/resources/inspector/search/AdvancedS earchView.js', 128 '<(PRODUCT_DIR)/resources/inspector/search/AdvancedS earchView.js',
129 '<(PRODUCT_DIR)/resources/inspector/console/ConsoleP anel.js', 129 '<(PRODUCT_DIR)/resources/inspector/console/ConsoleP anel.js',
130 '<(PRODUCT_DIR)/resources/inspector/elements/Element sPanel.js', 130 '<(PRODUCT_DIR)/resources/inspector/elements/Element sPanel.js',
131 '<(PRODUCT_DIR)/resources/inspector/extensions/Exten sionServer.js', 131 '<(PRODUCT_DIR)/resources/inspector/extensions/Exten sionServer.js',
132 '<(PRODUCT_DIR)/resources/inspector/resources/Resour cesPanel.js', 132 '<(PRODUCT_DIR)/resources/inspector/resources/Resour cesPanel.js',
133 '<(PRODUCT_DIR)/resources/inspector/network/NetworkP anel.js', 133 '<(PRODUCT_DIR)/resources/inspector/network/NetworkP anel.js',
134 '<(PRODUCT_DIR)/resources/inspector/settings/Setting sScreen.js',
134 '<(PRODUCT_DIR)/resources/inspector/source_frame/Sou rceFrame.js', 135 '<(PRODUCT_DIR)/resources/inspector/source_frame/Sou rceFrame.js',
135 '<(PRODUCT_DIR)/resources/inspector/sources/SourcesP anel.js', 136 '<(PRODUCT_DIR)/resources/inspector/sources/SourcesP anel.js',
136 '<(PRODUCT_DIR)/resources/inspector/timeline/Timelin ePanel.js', 137 '<(PRODUCT_DIR)/resources/inspector/timeline/Timelin ePanel.js',
137 '<(PRODUCT_DIR)/resources/inspector/profiler/Profile sPanel.js', 138 '<(PRODUCT_DIR)/resources/inspector/profiler/Profile sPanel.js',
138 '<(PRODUCT_DIR)/resources/inspector/audits/AuditsPan el.js', 139 '<(PRODUCT_DIR)/resources/inspector/audits/AuditsPan el.js',
139 '<(PRODUCT_DIR)/resources/inspector/layers/LayersPan el.js', 140 '<(PRODUCT_DIR)/resources/inspector/layers/LayersPan el.js',
140 '<(PRODUCT_DIR)/resources/inspector/profiler/heap_sn apshot_worker/HeapSnapshotWorker.js', 141 '<(PRODUCT_DIR)/resources/inspector/profiler/heap_sn apshot_worker/HeapSnapshotWorker.js',
141 '<(PRODUCT_DIR)/resources/inspector/script_formatter _worker/ScriptFormatterWorker.js', 142 '<(PRODUCT_DIR)/resources/inspector/script_formatter _worker/ScriptFormatterWorker.js',
142 '<(PRODUCT_DIR)/resources/inspector/temp_storage_sha red_worker/TempStorageSharedWorker.js', 143 '<(PRODUCT_DIR)/resources/inspector/temp_storage_sha red_worker/TempStorageSharedWorker.js',
143 '<(PRODUCT_DIR)/resources/inspector/devices/DevicesV iew.js', 144 '<(PRODUCT_DIR)/resources/inspector/devices/DevicesV iew.js',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 { 295 {
295 'destination': '<(PRODUCT_DIR)/resources/inspector/c ommon', 296 'destination': '<(PRODUCT_DIR)/resources/inspector/c ommon',
296 'files': [ 297 'files': [
297 '<@(devtools_common_js_files)', 298 '<@(devtools_common_js_files)',
298 ], 299 ],
299 }, 300 },
300 { 301 {
301 'destination': '<(PRODUCT_DIR)/resources/inspector/c omponents', 302 'destination': '<(PRODUCT_DIR)/resources/inspector/c omponents',
302 'files': [ 303 'files': [
303 '<@(devtools_components_js_files)', 304 '<@(devtools_components_js_files)',
304 'front_end/components/module.json',
305 ], 305 ],
306 }, 306 },
307 { 307 {
308 'destination': '<(PRODUCT_DIR)/resources/inspector/s dk', 308 'destination': '<(PRODUCT_DIR)/resources/inspector/s dk',
309 'files': [ 309 'files': [
310 '<@(devtools_sdk_js_files)', 310 '<@(devtools_sdk_js_files)',
311 ], 311 ],
312 }, 312 },
313 { 313 {
314 'destination': '<(PRODUCT_DIR)/resources/inspector/u i', 314 'destination': '<(PRODUCT_DIR)/resources/inspector/u i',
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 } 701 }
702 ] 702 ]
703 }] 703 }]
704 ] 704 ]
705 }, 705 },
706 { 706 {
707 'target_name': 'build_settings_module', 707 'target_name': 'build_settings_module',
708 'type': 'none', 708 'type': 'none',
709 'conditions': [ 709 'conditions': [
710 ['debug_devtools==0', { # Release 710 ['debug_devtools==0', { # Release
711 'actions': [{
712 'action_name': 'build_settings_module',
713 'script_name': 'scripts/inline_js_imports.py',
714 'input_file': 'front_end/settings/SettingsScreen.js',
715 'inputs': [
716 '<@(_script_name)',
717 '<@(devtools_settings_js_files)',
718 ],
719 'outputs': ['<(PRODUCT_DIR)/resources/inspector/settings /SettingsScreen.js'],
720 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)'],
721 }],
711 }, 722 },
712 { # Debug 723 { # Debug
713 'copies': [ 724 'copies': [
714 { 725 {
715 'destination': '<(PRODUCT_DIR)/resources/inspector/s ettings', 726 'destination': '<(PRODUCT_DIR)/resources/inspector/s ettings',
716 'files': [ 727 'files': [
728 '<@(devtools_settings_js_files)',
717 'front_end/settings/module.json', 729 'front_end/settings/module.json',
718 ], 730 ],
719 } 731 }
720 ] 732 ]
721 }] 733 }]
722 ] 734 ]
723 }, 735 },
724 { 736 {
725 'target_name': 'build_heap_snapshot_worker_module', 737 'target_name': 'build_heap_snapshot_worker_module',
726 'type': 'none', 738 'type': 'none',
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 '<@(devtools_module_json_files)', 901 '<@(devtools_module_json_files)',
890 ], 902 ],
891 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/blink/common/mod ules.js'], 903 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/blink/common/mod ules.js'],
892 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'], 904 'action': ['python', '<@(_script_name)', '<@(_input_file )', '<@(_outputs)', '<@(devtools_module_json_files)'],
893 }], 905 }],
894 }, 906 },
895 ], 907 ],
896 }], 908 }],
897 ], # conditions 909 ], # conditions
898 } 910 }
OLDNEW
« 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