OLD | NEW |
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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetNames.h', | 491 '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetNames.h', |
492 ], | 492 ], |
493 'action': [ | 493 'action': [ |
494 'python', | 494 'python', |
495 '../build/scripts/make_names.py', | 495 '../build/scripts/make_names.py', |
496 'events/EventTargetFactory.in', | 496 'events/EventTargetFactory.in', |
497 '--output_dir', | 497 '--output_dir', |
498 '<(SHARED_INTERMEDIATE_DIR)/blink', | 498 '<(SHARED_INTERMEDIATE_DIR)/blink', |
499 ], | 499 ], |
500 }, | 500 }, |
| 501 # TODO: Move the following two blocks to modules. http://crbug.com/37158
1. |
| 502 { |
| 503 'action_name': 'EventTargetModulesFactory', |
| 504 'inputs': [ |
| 505 '<@(make_event_factory_files)', |
| 506 'events/EventTargetModulesFactory.in', |
| 507 ], |
| 508 'outputs': [ |
| 509 '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesHeaders.h', |
| 510 '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesInterfaces.h', |
| 511 ], |
| 512 'action': [ |
| 513 'python', |
| 514 '../build/scripts/make_event_factory.py', |
| 515 'events/EventTargetModulesFactory.in', |
| 516 '--output_dir', |
| 517 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 518 ], |
| 519 }, |
| 520 { |
| 521 'action_name': 'EventTargetModulesNames', |
| 522 'inputs': [ |
| 523 '<@(make_names_files)', |
| 524 'events/EventTargetModulesFactory.in', |
| 525 ], |
| 526 'outputs': [ |
| 527 '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.cpp', |
| 528 '<(SHARED_INTERMEDIATE_DIR)/blink/EventTargetModulesNames.h', |
| 529 ], |
| 530 'action': [ |
| 531 'python', |
| 532 '../build/scripts/make_names.py', |
| 533 'events/EventTargetModulesFactory.in', |
| 534 '--output_dir', |
| 535 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 536 ], |
| 537 }, |
501 { | 538 { |
502 'action_name': 'MathMLNames', | 539 'action_name': 'MathMLNames', |
503 'inputs': [ | 540 'inputs': [ |
504 '<@(make_qualified_names_files)', | 541 '<@(make_qualified_names_files)', |
505 'html/parser/MathMLTagNames.in', | 542 'html/parser/MathMLTagNames.in', |
506 'html/parser/MathMLAttributeNames.in', | 543 'html/parser/MathMLAttributeNames.in', |
507 ], | 544 ], |
508 'outputs': [ | 545 'outputs': [ |
509 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.cpp', | 546 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.cpp', |
510 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.h', | 547 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.h', |
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 '../build/scripts/rule_bison.py', | 816 '../build/scripts/rule_bison.py', |
780 '<(RULE_INPUT_PATH)', | 817 '<(RULE_INPUT_PATH)', |
781 '<(SHARED_INTERMEDIATE_DIR)/blink', | 818 '<(SHARED_INTERMEDIATE_DIR)/blink', |
782 '<(bison_exe)', | 819 '<(bison_exe)', |
783 ], | 820 ], |
784 }, | 821 }, |
785 ], | 822 ], |
786 }, | 823 }, |
787 ], | 824 ], |
788 } | 825 } |
OLD | NEW |