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

Side by Side Diff: Source/core/core_generated.gyp

Issue 551003002: bindings: Removes unnecessary Event-related code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Pushed V8EventTargetCustom.cpp back with modification. Created 6 years, 3 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
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/events/Event.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 { 476 {
477 'action_name': 'EventFactory', 477 'action_name': 'EventFactory',
478 'inputs': [ 478 'inputs': [
479 '<@(make_event_factory_files)', 479 '<@(make_event_factory_files)',
480 '<(blink_core_output_dir)/EventInterfaces.in', 480 '<(blink_core_output_dir)/EventInterfaces.in',
481 'events/EventAliases.in', 481 'events/EventAliases.in',
482 ], 482 ],
483 'outputs': [ 483 'outputs': [
484 '<(blink_core_output_dir)/Event.cpp', 484 '<(blink_core_output_dir)/Event.cpp',
485 '<(blink_core_output_dir)/EventHeaders.h', 485 '<(blink_core_output_dir)/EventHeaders.h',
486 '<(blink_core_output_dir)/EventInterfaces.h',
487 ], 486 ],
488 'action': [ 487 'action': [
489 'python', 488 'python',
490 '../build/scripts/make_event_factory.py', 489 '../build/scripts/make_event_factory.py',
491 '<(blink_core_output_dir)/EventInterfaces.in', 490 '<(blink_core_output_dir)/EventInterfaces.in',
492 'events/EventAliases.in', 491 'events/EventAliases.in',
493 '--output_dir', 492 '--output_dir',
494 '<(blink_core_output_dir)', 493 '<(blink_core_output_dir)',
495 ], 494 ],
496 }, 495 },
497 { 496 {
498 'action_name': 'EventNames', 497 'action_name': 'EventNames',
499 'inputs': [ 498 'inputs': [
500 '<@(make_names_files)', 499 '<@(make_names_files)',
501 '<(blink_core_output_dir)/EventInterfaces.in', 500 '<(blink_core_output_dir)/EventInterfaces.in',
502 ], 501 ],
503 'outputs': [ 502 'outputs': [
504 '<(blink_core_output_dir)/EventNames.cpp', 503 '<(blink_core_output_dir)/EventNames.cpp',
505 '<(blink_core_output_dir)/EventNames.h', 504 '<(blink_core_output_dir)/EventNames.h',
506 ], 505 ],
507 'action': [ 506 'action': [
508 'python', 507 'python',
509 '../build/scripts/make_names.py', 508 '../build/scripts/make_names.py',
510 '<(blink_core_output_dir)/EventInterfaces.in', 509 '<(blink_core_output_dir)/EventInterfaces.in',
511 '--output_dir', 510 '--output_dir',
512 '<(blink_core_output_dir)', 511 '<(blink_core_output_dir)',
513 ], 512 ],
514 }, 513 },
515 { 514 {
516 'action_name': 'EventTargetFactory',
517 'inputs': [
518 '<@(make_event_factory_files)',
519 'events/EventTargetFactory.in',
520 ],
521 'outputs': [
522 '<(blink_core_output_dir)/EventTargetHeaders.h',
523 '<(blink_core_output_dir)/EventTargetInterfaces.h',
524 ],
525 'action': [
526 'python',
527 '../build/scripts/make_event_factory.py',
528 'events/EventTargetFactory.in',
529 '--output_dir',
530 '<(blink_core_output_dir)',
531 ],
532 },
533 {
534 'action_name': 'EventTargetNames', 515 'action_name': 'EventTargetNames',
535 'inputs': [ 516 'inputs': [
536 '<@(make_names_files)', 517 '<@(make_names_files)',
537 'events/EventTargetFactory.in', 518 'events/EventTargetFactory.in',
538 ], 519 ],
539 'outputs': [ 520 'outputs': [
540 '<(blink_core_output_dir)/EventTargetNames.cpp', 521 '<(blink_core_output_dir)/EventTargetNames.cpp',
541 '<(blink_core_output_dir)/EventTargetNames.h', 522 '<(blink_core_output_dir)/EventTargetNames.h',
542 ], 523 ],
543 'action': [ 524 'action': [
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 '../build/scripts/rule_bison.py', 807 '../build/scripts/rule_bison.py',
827 '<(RULE_INPUT_PATH)', 808 '<(RULE_INPUT_PATH)',
828 '<(blink_core_output_dir)', 809 '<(blink_core_output_dir)',
829 '<(bison_exe)', 810 '<(bison_exe)',
830 ], 811 ],
831 }, 812 },
832 ], 813 ],
833 }, 814 },
834 ], 815 ],
835 } 816 }
OLDNEW
« no previous file with comments | « Source/core/core.gyp ('k') | Source/core/events/Event.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698