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 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
575 'outputs': [ | 575 'outputs': [ |
576 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', | 576 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', |
577 ], | 577 ], |
578 'action': [ | 578 'action': [ |
579 'python', | 579 'python', |
580 '../build/scripts/make_token_matcher.py', | 580 '../build/scripts/make_token_matcher.py', |
581 '../core/html/HTMLMetaElement-in.cpp', | 581 '../core/html/HTMLMetaElement-in.cpp', |
582 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', | 582 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', |
583 ], | 583 ], |
584 }, | 584 }, |
585 { | |
586 'action_name': 'ColorData', | |
587 'inputs': [ | |
588 'platform/ColorData.gperf', | |
589 ], | |
590 'outputs': [ | |
591 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', | |
592 ], | |
593 'action': [ | |
594 '<(gperf_exe)', | |
595 '--key-positions=*', | |
596 '-D', '-s', '2', | |
597 '<@(_inputs)', | |
598 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', | |
599 ], | |
600 }, | |
601 ], | 585 ], |
602 'rules': [ | 586 'rules': [ |
603 { | 587 { |
604 'rule_name': 'bison', | 588 'rule_name': 'bison', |
605 'extension': 'y', | 589 'extension': 'y', |
606 'outputs': [ | 590 'outputs': [ |
607 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', | 591 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', |
608 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' | 592 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' |
609 ], | 593 ], |
610 'action': [ | 594 'action': [ |
611 'python', | 595 'python', |
612 '../build/scripts/rule_bison.py', | 596 '../build/scripts/rule_bison.py', |
613 '<(RULE_INPUT_PATH)', | 597 '<(RULE_INPUT_PATH)', |
614 '<(SHARED_INTERMEDIATE_DIR)/blink', | 598 '<(SHARED_INTERMEDIATE_DIR)/blink', |
615 '<(bison_exe)', | 599 '<(bison_exe)', |
616 ], | 600 ], |
617 'msvs_cygwin_shell': 1, | 601 'msvs_cygwin_shell': 1, |
618 }, | 602 }, |
619 ], | 603 ], |
620 }, | 604 }, |
621 ], | 605 ], |
622 } | 606 } |
OLD | NEW |