| 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 }, | |
| 538 { | 501 { |
| 539 'action_name': 'MathMLNames', | 502 'action_name': 'MathMLNames', |
| 540 'inputs': [ | 503 'inputs': [ |
| 541 '<@(make_qualified_names_files)', | 504 '<@(make_qualified_names_files)', |
| 542 'html/parser/MathMLTagNames.in', | 505 'html/parser/MathMLTagNames.in', |
| 543 'html/parser/MathMLAttributeNames.in', | 506 'html/parser/MathMLAttributeNames.in', |
| 544 ], | 507 ], |
| 545 'outputs': [ | 508 'outputs': [ |
| 546 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.cpp', | 509 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.cpp', |
| 547 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.h', | 510 '<(SHARED_INTERMEDIATE_DIR)/blink/MathMLNames.h', |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 '../build/scripts/rule_bison.py', | 779 '../build/scripts/rule_bison.py', |
| 817 '<(RULE_INPUT_PATH)', | 780 '<(RULE_INPUT_PATH)', |
| 818 '<(SHARED_INTERMEDIATE_DIR)/blink', | 781 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 819 '<(bison_exe)', | 782 '<(bison_exe)', |
| 820 ], | 783 ], |
| 821 }, | 784 }, |
| 822 ], | 785 ], |
| 823 }, | 786 }, |
| 824 ], | 787 ], |
| 825 } | 788 } |
| OLD | NEW |