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

Side by Side Diff: Source/bindings/derived_sources.gyp

Issue 21006006: Add forEach() to CSSVariablesMap (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Test fixes and rebased onto Python IDL generator Created 7 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 ], 49 ],
50 'perl_and_python_idl_files': [ 50 'perl_and_python_idl_files': [
51 '<@(deprecated_perl_idl_files)', 51 '<@(deprecated_perl_idl_files)',
52 '<@(python_idl_files)', 52 '<@(python_idl_files)',
53 ], 53 ],
54 'webcore_test_support_idl_files': [ 54 'webcore_test_support_idl_files': [
55 '<@(deprecated_perl_webcore_test_support_idl_files)', 55 '<@(deprecated_perl_webcore_test_support_idl_files)',
56 '<@(python_webcore_test_support_idl_files)', 56 '<@(python_webcore_test_support_idl_files)',
57 ], 57 ],
58 'code_generator_template_files': [ 58 'code_generator_template_files': [
59 'templates/callback.h', 59 'templates/callback.h.tmpl',
60 'templates/callback.cpp', 60 'templates/callback.cpp.tmpl',
61 ], 61 ],
62 62
63 'bindings_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings', 63 'bindings_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings',
64 'generated_global_constructors_idl_files': [ 64 'generated_global_constructors_idl_files': [
65 '<(SHARED_INTERMEDIATE_DIR)/blink/WindowConstructors.idl', 65 '<(SHARED_INTERMEDIATE_DIR)/blink/WindowConstructors.idl',
66 '<(SHARED_INTERMEDIATE_DIR)/blink/WorkerGlobalScopeConstructors.idl', 66 '<(SHARED_INTERMEDIATE_DIR)/blink/WorkerGlobalScopeConstructors.idl',
67 '<(SHARED_INTERMEDIATE_DIR)/blink/SharedWorkerGlobalScopeConstructors.i dl', 67 '<(SHARED_INTERMEDIATE_DIR)/blink/SharedWorkerGlobalScopeConstructors.i dl',
68 '<(SHARED_INTERMEDIATE_DIR)/blink/DedicatedWorkerGlobalScopeConstructor s.idl', 68 '<(SHARED_INTERMEDIATE_DIR)/blink/DedicatedWorkerGlobalScopeConstructor s.idl',
69 ], 69 ],
70 70
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 '../core/scripts/action_derivedsourcesallinone.py', 348 '../core/scripts/action_derivedsourcesallinone.py',
349 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', 349 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt',
350 '--', 350 '--',
351 '<@(derived_sources_aggregate_files)', 351 '<@(derived_sources_aggregate_files)',
352 ], 352 ],
353 'message': 'Generating bindings derived sources', 353 'message': 'Generating bindings derived sources',
354 }], 354 }],
355 }, 355 },
356 ], 356 ],
357 } 357 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698