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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 'generate_test_support_idls', | 97 'generate_test_support_idls', |
98 '../config.gyp:config', | 98 '../config.gyp:config', |
99 ], | 99 ], |
100 'sources': [ | 100 'sources': [ |
101 # bison rule | 101 # bison rule |
102 'css/CSSGrammar.y', | 102 'css/CSSGrammar.y', |
103 'xml/XPathGrammar.y', | 103 'xml/XPathGrammar.y', |
104 ], | 104 ], |
105 'actions': [ | 105 'actions': [ |
106 { | 106 { |
| 107 'action_name': 'generateBlinkInJavaScript', |
| 108 'inputs': [ |
| 109 '../bindings/v8/BlinkInJavaScriptController.js', |
| 110 'frame/WindowBase64.js', |
| 111 ], |
| 112 'outputs': [ |
| 113 '<(SHARED_INTERMEDIATE_DIR)/blink/BlinkInJavaScript.h', |
| 114 ], |
| 115 'action': [ |
| 116 'python', |
| 117 '../build/scripts/make_blink_in_javascript.py', |
| 118 '<@(_outputs)', |
| 119 '<@(_inputs)' |
| 120 ], |
| 121 'msvs_cygwin_shell': 0, |
| 122 }, |
| 123 { |
107 'action_name': 'generateXMLViewerCSS', | 124 'action_name': 'generateXMLViewerCSS', |
108 'inputs': [ | 125 'inputs': [ |
109 'xml/XMLViewer.css', | 126 'xml/XMLViewer.css', |
110 ], | 127 ], |
111 'outputs': [ | 128 'outputs': [ |
112 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h', | 129 '<(SHARED_INTERMEDIATE_DIR)/blink/XMLViewerCSS.h', |
113 ], | 130 ], |
114 'action': [ | 131 'action': [ |
115 'python', | 132 'python', |
116 '../build/scripts/xxd.py', | 133 '../build/scripts/xxd.py', |
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 '<(RULE_INPUT_PATH)', | 652 '<(RULE_INPUT_PATH)', |
636 '<(SHARED_INTERMEDIATE_DIR)/blink', | 653 '<(SHARED_INTERMEDIATE_DIR)/blink', |
637 '<(bison_exe)', | 654 '<(bison_exe)', |
638 ], | 655 ], |
639 'msvs_cygwin_shell': 1, | 656 'msvs_cygwin_shell': 1, |
640 }, | 657 }, |
641 ], | 658 ], |
642 }, | 659 }, |
643 ], | 660 ], |
644 } | 661 } |
OLD | NEW |