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

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

Issue 424983002: Stop using WebCore namespace in generated code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 ], 70 ],
71 'outputs': [ 71 'outputs': [
72 '<(blink_modules_output_dir)/CachePolyfill.h', 72 '<(blink_modules_output_dir)/CachePolyfill.h',
73 '<(blink_modules_output_dir)/CachePolyfill.cpp', 73 '<(blink_modules_output_dir)/CachePolyfill.cpp',
74 ], 74 ],
75 'action': [ 75 'action': [
76 'python', 76 'python',
77 '../build/scripts/make-file-arrays.py', 77 '../build/scripts/make-file-arrays.py',
78 '--out-h=<(blink_modules_output_dir)/CachePolyfill.h', 78 '--out-h=<(blink_modules_output_dir)/CachePolyfill.h',
79 '--out-cpp=<(blink_modules_output_dir)/CachePolyfill.cpp', 79 '--out-cpp=<(blink_modules_output_dir)/CachePolyfill.cpp',
80 '--namespace=WebCore', 80 '--namespace=blink',
81 '<@(resources)', 81 '<@(resources)',
82 ], 82 ],
83 }, 83 },
84 { 84 {
85 # GN version: //third_party/WebKit/Source/modules:modules_cache_storage_ polyfill 85 # GN version: //third_party/WebKit/Source/modules:modules_cache_storage_ polyfill
86 'action_name': 'CacheStoragePolyfill', 86 'action_name': 'CacheStoragePolyfill',
87 'process_outputs_as_sources': 1, 87 'process_outputs_as_sources': 1,
88 'variables': { 88 'variables': {
89 'resources': [ 89 'resources': [
90 'serviceworkers/polyfills/cacheStoragePolyfill.js', 90 'serviceworkers/polyfills/cacheStoragePolyfill.js',
91 ], 91 ],
92 }, 92 },
93 'inputs': [ 93 'inputs': [
94 '../build/scripts/make-file-arrays.py', 94 '../build/scripts/make-file-arrays.py',
95 '<@(resources)', 95 '<@(resources)',
96 ], 96 ],
97 'outputs': [ 97 'outputs': [
98 '<(blink_modules_output_dir)/CacheStoragePolyfill.h', 98 '<(blink_modules_output_dir)/CacheStoragePolyfill.h',
99 '<(blink_modules_output_dir)/CacheStoragePolyfill.cpp', 99 '<(blink_modules_output_dir)/CacheStoragePolyfill.cpp',
100 ], 100 ],
101 'action': [ 101 'action': [
102 'python', 102 'python',
103 '../build/scripts/make-file-arrays.py', 103 '../build/scripts/make-file-arrays.py',
104 '--out-h=<(blink_modules_output_dir)/CacheStoragePolyfill.h', 104 '--out-h=<(blink_modules_output_dir)/CacheStoragePolyfill.h',
105 '--out-cpp=<(blink_modules_output_dir)/CacheStoragePolyfill.cpp', 105 '--out-cpp=<(blink_modules_output_dir)/CacheStoragePolyfill.cpp',
106 '--namespace=WebCore', 106 '--namespace=blink',
107 '<@(resources)', 107 '<@(resources)',
108 ], 108 ],
109 }, 109 },
110 ], 110 ],
111 # Disable c4267 warnings until we fix size_t to int truncations. 111 # Disable c4267 warnings until we fix size_t to int truncations.
112 'msvs_disabled_warnings': [ 4267, 4334, ] 112 'msvs_disabled_warnings': [ 4267, 4334, ]
113 }, 113 },
114 { 114 {
115 # GN version: //third_party/WebKit/Source/modules:modules_testing 115 # GN version: //third_party/WebKit/Source/modules:modules_testing
116 'target_name': 'modules_testing', 116 'target_name': 'modules_testing',
(...skipping 25 matching lines...) Expand all
142 ], 142 ],
143 'sources': [ 143 'sources': [
144 # bison rule 144 # bison rule
145 '../core/css/CSSGrammar.y', 145 '../core/css/CSSGrammar.y',
146 '../core/xml/XPathGrammar.y', 146 '../core/xml/XPathGrammar.y',
147 ], 147 ],
148 'actions': [ 148 'actions': [
149 ], 149 ],
150 }], 150 }],
151 } 151 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698