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

Side by Side Diff: Source/bindings/bindings.gypi

Issue 14110002: Introduce bindings.gyp (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address Nico's comments Created 7 years, 8 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 'variables': { 2 'variables': {
3 'bindings_dir': ['.'], 3 'bindings_dir': ['.'],
4 'bindings_files': [ 4 'bindings_files': [
5 'v8/ActiveDOMCallback.cpp', 5 'v8/ActiveDOMCallback.cpp',
6 'v8/ActiveDOMCallback.h', 6 'v8/ActiveDOMCallback.h',
7 'v8/ArrayValue.cpp', 7 'v8/ArrayValue.cpp',
8 'v8/ArrayValue.h', 8 'v8/ArrayValue.h',
9 'v8/BindingSecurity.cpp', 9 'v8/BindingSecurity.cpp',
10 'v8/BindingSecurity.h', 10 'v8/BindingSecurity.h',
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 'v8/custom/V8TrackEventCustom.cpp', 238 'v8/custom/V8TrackEventCustom.cpp',
239 'v8/custom/V8WebGLRenderingContextCustom.cpp', 239 'v8/custom/V8WebGLRenderingContextCustom.cpp',
240 'v8/custom/V8WorkerContextCustom.cpp', 240 'v8/custom/V8WorkerContextCustom.cpp',
241 'v8/custom/V8WorkerCustom.cpp', 241 'v8/custom/V8WorkerCustom.cpp',
242 'v8/custom/V8XMLHttpRequestCustom.cpp', 242 'v8/custom/V8XMLHttpRequestCustom.cpp',
243 'v8/custom/V8XSLTProcessorCustom.cpp', 243 'v8/custom/V8XSLTProcessorCustom.cpp',
244 'v8/npruntime.cpp', 244 'v8/npruntime.cpp',
245 'v8/npruntime_impl.h', 245 'v8/npruntime_impl.h',
246 'v8/npruntime_priv.h', 246 'v8/npruntime_priv.h',
247 ], 247 ],
248 } 248 'conditions': [
249 ['OS=="win" and buildtype=="Official"', {
250 # On windows official release builds, we try to preserve symbol space.
251 'derived_sources_aggregate_files': [
252 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources All.cpp',
253 ],
254 },{
255 'derived_sources_aggregate_files': [
256 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 01.cpp',
257 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 02.cpp',
258 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 03.cpp',
259 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 04.cpp',
260 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 05.cpp',
261 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 06.cpp',
262 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 07.cpp',
263 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 08.cpp',
264 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 09.cpp',
265 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 10.cpp',
266 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 11.cpp',
267 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 12.cpp',
268 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 13.cpp',
269 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 14.cpp',
270 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 15.cpp',
271 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 16.cpp',
272 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 17.cpp',
273 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 18.cpp',
274 '<(SHARED_INTERMEDIATE_DIR)/webkit/bindings/V8DerivedSources 19.cpp',
275 ],
276 }],
277 ],
278 },
249 } 279 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698