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

Side by Side Diff: Source/modules/modules.gyp

Issue 329433002: Initial ServiceWorker CacheStorage API polyfill. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: clear to land 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
« no previous file with comments | « no previous file | Source/modules/serviceworkers/ServiceWorkerGlobalScope.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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/modules/serviceworkers/ServiceWorkerGlobalScope.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698