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

Side by Side Diff: Source/core/core_generated.gyp

Issue 391963002: [Blink] XMLTreeViewer should load resources from blink_resources.grd instead of relying upon xxd.py (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/inspector/InjectedScriptCanvasModule.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h', 179 '<(blink_core_output_dir)/PrivateScriptSourcesForTesting.h',
180 ], 180 ],
181 'action': [ 181 'action': [
182 'python', 182 'python',
183 '../build/scripts/make_private_script_source.py', 183 '../build/scripts/make_private_script_source.py',
184 '<@(_outputs)', 184 '<@(_outputs)',
185 '<@(_private_script_files)' 185 '<@(_private_script_files)'
186 ], 186 ],
187 }, 187 },
188 { 188 {
189 'action_name': 'generateXMLViewerCSS',
190 'inputs': [
191 'xml/XMLViewer.css',
192 ],
193 'outputs': [
194 '<(blink_core_output_dir)/XMLViewerCSS.h',
195 ],
196 'action': [
197 'python',
198 '../build/scripts/xxd.py',
199 'XMLViewer_css',
200 '<@(_inputs)',
201 '<@(_outputs)'
202 ],
203 },
204 {
205 'action_name': 'generateXMLViewerJS',
206 'inputs': [
207 'xml/XMLViewer.js',
208 ],
209 'outputs': [
210 '<(blink_core_output_dir)/XMLViewerJS.h',
211 ],
212 'action': [
213 'python',
214 '../build/scripts/xxd.py',
215 'XMLViewer_js',
216 '<@(_inputs)',
217 '<@(_outputs)'
218 ],
219 },
220 {
221 'action_name': 'HTMLEntityTable', 189 'action_name': 'HTMLEntityTable',
222 'inputs': [ 190 'inputs': [
223 'html/parser/create-html-entity-table', 191 'html/parser/create-html-entity-table',
224 'html/parser/HTMLEntityNames.in', 192 'html/parser/HTMLEntityNames.in',
225 ], 193 ],
226 'outputs': [ 194 'outputs': [
227 '<(blink_core_output_dir)/HTMLEntityTable.cpp' 195 '<(blink_core_output_dir)/HTMLEntityTable.cpp'
228 ], 196 ],
229 'action': [ 197 'action': [
230 'python', 198 'python',
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 '../build/scripts/rule_bison.py', 819 '../build/scripts/rule_bison.py',
852 '<(RULE_INPUT_PATH)', 820 '<(RULE_INPUT_PATH)',
853 '<(blink_core_output_dir)', 821 '<(blink_core_output_dir)',
854 '<(bison_exe)', 822 '<(bison_exe)',
855 ], 823 ],
856 }, 824 },
857 ], 825 ],
858 }, 826 },
859 ], 827 ],
860 } 828 }
OLDNEW
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/inspector/InjectedScriptCanvasModule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698