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

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

Issue 311343003: ServiceWorker polyfill Fetch implementation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: clean up and add FIXMEs 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
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'defines': [ 47 'defines': [
48 'BLINK_IMPLEMENTATION=1', 48 'BLINK_IMPLEMENTATION=1',
49 'INSIDE_BLINK', 49 'INSIDE_BLINK',
50 ], 50 ],
51 'sources': [ 51 'sources': [
52 '<@(modules_files)', 52 '<@(modules_files)',
53 '<@(bindings_modules_v8_generated_aggregate_files)', 53 '<@(bindings_modules_v8_generated_aggregate_files)',
54 ], 54 ],
55 'actions': [ 55 'actions': [
56 { 56 {
57 'action_name': 'FetchPolyfill',
58 'process_outputs_as_sources': 1,
59 'variables': {
60 'resources': [
61 'serviceworkers/polyfills/fetchPolyfill.js',
62 ],
63 },
64 'inputs': [
65 '../build/scripts/make-file-arrays.py',
66 '<@(resources)',
67 ],
68 'outputs': [
69 '<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.h',
70 '<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.cpp',
71 ],
72 'action': [
73 'python',
74 '../build/scripts/make-file-arrays.py',
75 '--out-h=<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.h',
76 '--out-cpp=<(SHARED_INTERMEDIATE_DIR)/blink/FetchPolyfill.cpp',
77 '--namespace=WebCore',
78 '<@(resources)',
79 ],
80 },
81 {
57 'action_name': 'CachePolyfill', 82 'action_name': 'CachePolyfill',
58 'process_outputs_as_sources': 1, 83 'process_outputs_as_sources': 1,
59 'variables': { 84 'variables': {
60 'resources': [ 85 'resources': [
61 'serviceworkers/polyfills/cachePolyfill.js', 86 'serviceworkers/polyfills/cachePolyfill.js',
62 ], 87 ],
63 }, 88 },
64 'inputs': [ 89 'inputs': [
65 '../build/scripts/make-file-arrays.py', 90 '../build/scripts/make-file-arrays.py',
66 '<@(resources)', 91 '<@(resources)',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 ], 136 ],
112 'sources': [ 137 'sources': [
113 # bison rule 138 # bison rule
114 '../core/css/CSSGrammar.y', 139 '../core/css/CSSGrammar.y',
115 '../core/xml/XPathGrammar.y', 140 '../core/xml/XPathGrammar.y',
116 ], 141 ],
117 'actions': [ 142 'actions': [
118 ], 143 ],
119 }], 144 }],
120 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698