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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 ], | 102 ], |
103 'action': [ | 103 'action': [ |
104 'python', | 104 'python', |
105 '../build/scripts/make-file-arrays.py', | 105 '../build/scripts/make-file-arrays.py', |
106 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/CachePolyfill.h', | 106 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/CachePolyfill.h', |
107 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/CachePolyfill.cpp', | 107 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/CachePolyfill.cpp', |
108 '--namespace=WebCore', | 108 '--namespace=WebCore', |
109 '<@(resources)', | 109 '<@(resources)', |
110 ], | 110 ], |
111 }, | 111 }, |
| 112 { |
| 113 'action_name': 'CacheStoragePolyfill', |
| 114 'process_outputs_as_sources': 1, |
| 115 'variables': { |
| 116 'resources': [ |
| 117 'serviceworkers/polyfills/cacheStoragePolyfill.js', |
| 118 ], |
| 119 }, |
| 120 'inputs': [ |
| 121 '../build/scripts/make-file-arrays.py', |
| 122 '<@(resources)', |
| 123 ], |
| 124 'outputs': [ |
| 125 '<(SHARED_INTERMEDIATE_DIR)/blink/CacheStoragePolyfill.h', |
| 126 '<(SHARED_INTERMEDIATE_DIR)/blink/CacheStoragePolyfill.cpp', |
| 127 ], |
| 128 'action': [ |
| 129 'python', |
| 130 '../build/scripts/make-file-arrays.py', |
| 131 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/CacheStoragePolyfill.h', |
| 132 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/CacheStoragePolyfill.cpp
', |
| 133 '--namespace=WebCore', |
| 134 '<@(resources)', |
| 135 ], |
| 136 }, |
112 ], | 137 ], |
113 # Disable c4267 warnings until we fix size_t to int truncations. | 138 # Disable c4267 warnings until we fix size_t to int truncations. |
114 'msvs_disabled_warnings': [ 4267, 4334, ] | 139 'msvs_disabled_warnings': [ 4267, 4334, ] |
115 }, | 140 }, |
116 { | 141 { |
117 'target_name': 'modules_testing', | 142 'target_name': 'modules_testing', |
118 'type': 'static_library', | 143 'type': 'static_library', |
119 'dependencies': [ | 144 'dependencies': [ |
120 '../config.gyp:config', | 145 '../config.gyp:config', |
121 '../core/core.gyp:webcore', | 146 '../core/core.gyp:webcore', |
(...skipping 20 matching lines...) Expand all Loading... |
142 ], | 167 ], |
143 'sources': [ | 168 'sources': [ |
144 # bison rule | 169 # bison rule |
145 '../core/css/CSSGrammar.y', | 170 '../core/css/CSSGrammar.y', |
146 '../core/xml/XPathGrammar.y', | 171 '../core/xml/XPathGrammar.y', |
147 ], | 172 ], |
148 'actions': [ | 173 'actions': [ |
149 ], | 174 ], |
150 }], | 175 }], |
151 } | 176 } |
OLD | NEW |