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

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

Issue 345893002: Implement an infrastructure of Blink-in-JS Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« Source/core/core.gypi ('K') | « Source/core/core.gypi ('k') | no next file » | 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 'core_event_interfaces', 137 'core_event_interfaces',
138 '../config.gyp:config', 138 '../config.gyp:config',
139 ], 139 ],
140 'sources': [ 140 'sources': [
141 # bison rule 141 # bison rule
142 'css/CSSGrammar.y', 142 'css/CSSGrammar.y',
143 'xml/XPathGrammar.y', 143 'xml/XPathGrammar.y',
144 ], 144 ],
145 'actions': [ 145 'actions': [
146 { 146 {
147 'action_name': 'generatePrivateScript',
148 # FIXME: The implementation of Blink-in-JS is not yet mature.
Nils Barth (inactive) 2014/06/23 03:14:30 Link to tracking bug?
149 # You can use Blink-in-JS in your local experiment, but don't ship it.
150 'inputs': [
151 '../build/scripts/make_private_script_source.py',
152 '../bindings/v8/PrivateScriptController.js',
153 '../bindings/v8/PrivateScriptTest.js',
154 ],
155 'outputs': [
156 '<(blink_core_output_dir)/PrivateScriptSources.h',
157 ],
158 'action': [
159 'python',
160 '../build/scripts/make_private_script_source.py',
161 '<@(_outputs)',
162 '<@(_inputs)'
Nils Barth (inactive) 2014/06/23 03:14:30 ?? '<@(_inputs)' expands to start with '../build/s
haraken 2014/06/23 06:01:46 You have a very good eye... I don't understand why
Nils Barth (inactive) 2014/06/23 06:21:25 Thanks (#^.^#) ...I look at lots of GYP files...
163 ],
164 },
165 {
147 'action_name': 'generateXMLViewerCSS', 166 'action_name': 'generateXMLViewerCSS',
148 'inputs': [ 167 'inputs': [
149 'xml/XMLViewer.css', 168 'xml/XMLViewer.css',
150 ], 169 ],
151 'outputs': [ 170 'outputs': [
152 '<(blink_core_output_dir)/XMLViewerCSS.h', 171 '<(blink_core_output_dir)/XMLViewerCSS.h',
153 ], 172 ],
154 'action': [ 173 'action': [
155 'python', 174 'python',
156 '../build/scripts/xxd.py', 175 '../build/scripts/xxd.py',
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 '../build/scripts/rule_bison.py', 838 '../build/scripts/rule_bison.py',
820 '<(RULE_INPUT_PATH)', 839 '<(RULE_INPUT_PATH)',
821 '<(blink_core_output_dir)', 840 '<(blink_core_output_dir)',
822 '<(bison_exe)', 841 '<(bison_exe)',
823 ], 842 ],
824 }, 843 },
825 ], 844 ],
826 }, 845 },
827 ], 846 ],
828 } 847 }
OLDNEW
« Source/core/core.gypi ('K') | « Source/core/core.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698