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

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: Python code generator changes 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 '<@(python_svg_idl_files)', 48 '<@(python_svg_idl_files)',
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': [
Nils Barth (inactive) 2013/08/06 05:45:18 You're adding a .tmpl extension to the template fi
59 'templates/callback_interface.cpp', 59 'templates/callback_interface.cpp.tmpl',
60 'templates/callback_interface.h', 60 'templates/callback_interface.h.tmpl',
61 'templates/interface.cpp', 61 'templates/interface.cpp.tmpl',
62 'templates/interface.h', 62 'templates/interface.h.tmpl',
63 ], 63 ],
64 64
65 'bindings_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings', 65 'bindings_output_dir': '<(SHARED_INTERMEDIATE_DIR)/blink/bindings',
66 'generated_global_constructors_idl_files': [ 66 'generated_global_constructors_idl_files': [
67 '<(SHARED_INTERMEDIATE_DIR)/blink/WindowConstructors.idl', 67 '<(SHARED_INTERMEDIATE_DIR)/blink/WindowConstructors.idl',
68 '<(SHARED_INTERMEDIATE_DIR)/blink/WorkerGlobalScopeConstructors.idl', 68 '<(SHARED_INTERMEDIATE_DIR)/blink/WorkerGlobalScopeConstructors.idl',
69 '<(SHARED_INTERMEDIATE_DIR)/blink/SharedWorkerGlobalScopeConstructors.i dl', 69 '<(SHARED_INTERMEDIATE_DIR)/blink/SharedWorkerGlobalScopeConstructors.i dl',
70 '<(SHARED_INTERMEDIATE_DIR)/blink/DedicatedWorkerGlobalScopeConstructor s.idl', 70 '<(SHARED_INTERMEDIATE_DIR)/blink/DedicatedWorkerGlobalScopeConstructor s.idl',
71 ], 71 ],
72 72
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 '../core/scripts/action_derivedsourcesallinone.py', 350 '../core/scripts/action_derivedsourcesallinone.py',
351 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt', 351 '<(SHARED_INTERMEDIATE_DIR)/blink/InterfaceDependencies.txt',
352 '--', 352 '--',
353 '<@(derived_sources_aggregate_files)', 353 '<@(derived_sources_aggregate_files)',
354 ], 354 ],
355 'message': 'Generating bindings derived sources', 355 'message': 'Generating bindings derived sources',
356 }], 356 }],
357 }, 357 },
358 ], 358 ],
359 } 359 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698