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

Unified Diff: Source/core/core_generated.gyp

Issue 275283002: Split EventTargetFactory.in and auto-generate modules-related files. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Split EventTargetFactory.in and auto-generate modules-related files. Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/events/EventTarget.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/core_generated.gyp
diff --git a/Source/core/core_generated.gyp b/Source/core/core_generated.gyp
index 737e12d6fb820aa73eba757580c863a016cdcd79..67b8736938a16bf1dc48d77808b273f1dc638d9f 100644
--- a/Source/core/core_generated.gyp
+++ b/Source/core/core_generated.gyp
@@ -498,6 +498,43 @@
'<(SHARED_INTERMEDIATE_DIR)/blink',
],
},
+ # TODO: Move the following two blocks to modules. http://crbug.com/371581.
+ {
+ 'action_name': 'EventTargetModulesFactory',
+ 'inputs': [
+ '<@(make_event_factory_files)',
+ 'events/EventTargetModulesFactory.in',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesHeaders.h',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesInterfaces.h',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_event_factory.py',
+ 'events/EventTargetModulesFactory.in',
+ '--output_dir',
+ '<(SHARED_INTERMEDIATE_DIR)/blink',
+ ],
+ },
+ {
+ 'action_name': 'EventTargetModulesNames',
+ 'inputs': [
+ '<@(make_names_files)',
+ 'events/EventTargetModulesFactory.in',
+ ],
+ 'outputs': [
+ '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.cpp',
+ '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.h',
+ ],
+ 'action': [
+ 'python',
+ '../build/scripts/make_names.py',
+ 'events/EventTargetModulesFactory.in',
+ '--output_dir',
+ '<(SHARED_INTERMEDIATE_DIR)/blink',
+ ],
+ },
{
'action_name': 'MathMLNames',
'inputs': [
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/events/EventTarget.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698