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

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

Issue 23583012: Move xxd.pl script to core/scripts as its used by other core components like XMLTreeViewer (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing! Created 7 years, 3 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/ConvertFileToHeaderWithCharacterArray.gypi ('k') | Source/core/inspector/xxd.pl » ('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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 'action_name': 'generateV8ArrayBufferViewCustomScript', 104 'action_name': 'generateV8ArrayBufferViewCustomScript',
105 'inputs': [ 105 'inputs': [
106 '<(bindings_dir)/v8/custom/V8ArrayBufferViewCustomScript.js', 106 '<(bindings_dir)/v8/custom/V8ArrayBufferViewCustomScript.js',
107 ], 107 ],
108 'outputs': [ 108 'outputs': [
109 '<(SHARED_INTERMEDIATE_DIR)/blink/V8ArrayBufferViewCustomScript.h', 109 '<(SHARED_INTERMEDIATE_DIR)/blink/V8ArrayBufferViewCustomScript.h',
110 ], 110 ],
111 'msvs_cygwin_shell': 0, 111 'msvs_cygwin_shell': 0,
112 'action': [ 112 'action': [
113 '<(perl_exe)', 113 '<(perl_exe)',
114 'inspector/xxd.pl', 114 'scripts/xxd.pl',
115 'V8ArrayBufferViewCustomScript_js', 115 'V8ArrayBufferViewCustomScript_js',
116 '<@(_inputs)', 116 '<@(_inputs)',
117 '<@(_outputs)' 117 '<@(_outputs)'
118 ], 118 ],
119 'message': 'Generating V8ArrayBufferViewCustomScript.h from V8ArrayBuf ferViewCustomScript.js', 119 'message': 'Generating V8ArrayBufferViewCustomScript.h from V8ArrayBuf ferViewCustomScript.js',
120 }, 120 },
121 { 121 {
122 'action_name': 'generateXMLViewerCSS', 122 'action_name': 'generateXMLViewerCSS',
123 'inputs': [ 123 'inputs': [
124 'xml/XMLViewer.css', 124 'xml/XMLViewer.css',
125 ], 125 ],
126 'outputs': [ 126 'outputs': [
127 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h', 127 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h',
128 ], 128 ],
129 'msvs_cygwin_shell': 0, 129 'msvs_cygwin_shell': 0,
130 'action': [ 130 'action': [
131 '<(perl_exe)', 131 '<(perl_exe)',
132 'inspector/xxd.pl', 132 'scripts/xxd.pl',
133 'XMLViewer_css', 133 'XMLViewer_css',
134 '<@(_inputs)', 134 '<@(_inputs)',
135 '<@(_outputs)' 135 '<@(_outputs)'
136 ], 136 ],
137 }, 137 },
138 { 138 {
139 'action_name': 'generateXMLViewerJS', 139 'action_name': 'generateXMLViewerJS',
140 'inputs': [ 140 'inputs': [
141 'xml/XMLViewer.js', 141 'xml/XMLViewer.js',
142 ], 142 ],
143 'outputs': [ 143 'outputs': [
144 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerJS.h', 144 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerJS.h',
145 ], 145 ],
146 'msvs_cygwin_shell': 0, 146 'msvs_cygwin_shell': 0,
147 'action': [ 147 'action': [
148 '<(perl_exe)', 148 '<(perl_exe)',
149 'inspector/xxd.pl', 149 'scripts/xxd.pl',
150 'XMLViewer_js', 150 'XMLViewer_js',
151 '<@(_inputs)', 151 '<@(_inputs)',
152 '<@(_outputs)' 152 '<@(_outputs)'
153 ], 153 ],
154 }, 154 },
155 { 155 {
156 'action_name': 'HTMLEntityTable', 156 'action_name': 'HTMLEntityTable',
157 'inputs': [ 157 'inputs': [
158 'html/parser/create-html-entity-table', 158 'html/parser/create-html-entity-table',
159 'html/parser/HTMLEntityNames.in', 159 'html/parser/HTMLEntityNames.in',
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 'scripts/make-hash-tools.pl', 694 'scripts/make-hash-tools.pl',
695 '<(SHARED_INTERMEDIATE_DIR)/blink', 695 '<(SHARED_INTERMEDIATE_DIR)/blink',
696 '<(RULE_INPUT_PATH)', 696 '<(RULE_INPUT_PATH)',
697 '<(gperf_exe)', 697 '<(gperf_exe)',
698 ], 698 ],
699 }, 699 },
700 ], 700 ],
701 }, 701 },
702 ], 702 ],
703 } 703 }
OLDNEW
« no previous file with comments | « Source/core/ConvertFileToHeaderWithCharacterArray.gypi ('k') | Source/core/inspector/xxd.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698