OLD | NEW |
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 Loading... |
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 557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
701 } | 702 } |
702 ] | 703 ] |
703 }] | 704 }] |
704 ] | 705 ] |
705 }, | 706 }, |
706 { | 707 { |
707 'target_name': 'build_settings_module', | 708 'target_name': 'build_settings_module', |
708 'type': 'none', | 709 'type': 'none', |
709 'conditions': [ | 710 'conditions': [ |
710 ['debug_devtools==0', { # Release | 711 ['debug_devtools==0', { # Release |
| 712 'actions': [{ |
| 713 'action_name': 'build_settings_module', |
| 714 'script_name': 'scripts/inline_js_imports.py', |
| 715 'input_file': 'front_end/settings/SettingsScreen.js', |
| 716 'inputs': [ |
| 717 '<@(_script_name)', |
| 718 '<@(devtools_settings_js_files)', |
| 719 ], |
| 720 'outputs': ['<(PRODUCT_DIR)/resources/inspector/settings
/SettingsScreen.js'], |
| 721 'action': ['python', '<@(_script_name)', '<@(_input_file
)', '<@(_outputs)'], |
| 722 }], |
711 }, | 723 }, |
712 { # Debug | 724 { # Debug |
713 'copies': [ | 725 'copies': [ |
714 { | 726 { |
715 'destination': '<(PRODUCT_DIR)/resources/inspector/s
ettings', | 727 'destination': '<(PRODUCT_DIR)/resources/inspector/s
ettings', |
716 'files': [ | 728 'files': [ |
| 729 '<@(devtools_settings_js_files)', |
717 'front_end/settings/module.json', | 730 'front_end/settings/module.json', |
718 ], | 731 ], |
719 } | 732 } |
720 ] | 733 ] |
721 }] | 734 }] |
722 ] | 735 ] |
723 }, | 736 }, |
724 { | 737 { |
725 'target_name': 'build_heap_snapshot_worker_module', | 738 'target_name': 'build_heap_snapshot_worker_module', |
726 'type': 'none', | 739 'type': 'none', |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 '<@(devtools_module_json_files)', | 902 '<@(devtools_module_json_files)', |
890 ], | 903 ], |
891 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/blink/common/mod
ules.js'], | 904 'outputs': ['<(SHARED_INTERMEDIATE_DIR)/blink/common/mod
ules.js'], |
892 'action': ['python', '<@(_script_name)', '<@(_input_file
)', '<@(_outputs)', '<@(devtools_module_json_files)'], | 905 'action': ['python', '<@(_script_name)', '<@(_input_file
)', '<@(_outputs)', '<@(devtools_module_json_files)'], |
893 }], | 906 }], |
894 }, | 907 }, |
895 ], | 908 ], |
896 }], | 909 }], |
897 ], # conditions | 910 ], # conditions |
898 } | 911 } |
OLD | NEW |