Chromium Code Reviews| 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 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 596 'outputs': [ | 596 'outputs': [ |
| 597 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', | 597 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', |
| 598 ], | 598 ], |
| 599 'action': [ | 599 'action': [ |
| 600 'python', | 600 'python', |
| 601 '../build/scripts/make_token_matcher.py', | 601 '../build/scripts/make_token_matcher.py', |
| 602 '../core/html/HTMLMetaElement-in.cpp', | 602 '../core/html/HTMLMetaElement-in.cpp', |
| 603 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', | 603 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLMetaElement.cpp', |
| 604 ], | 604 ], |
| 605 }, | 605 }, |
| 606 { | |
| 607 'action_name': 'ColorData', | |
| 608 'inputs': [ | |
| 609 'platform/ColorData.gperf', | |
| 610 ], | |
| 611 'outputs': [ | |
| 612 '<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', | |
| 613 ], | |
| 614 'action': [ | |
| 615 '<(gperf_exe)', | |
| 616 '--key-positions=*', | |
| 617 '-D', '-s', '2', | |
| 618 '<@(_inputs)', | |
| 619 '--output-file=<(SHARED_INTERMEDIATE_DIR)/blink/ColorData.cpp', | |
| 620 ], | |
| 621 }, | |
| 622 ], | 606 ], |
| 623 'rules': [ | 607 'rules': [ |
| 624 { | 608 { |
| 625 'rule_name': 'bison', | 609 'rule_name': 'bison', |
| 626 'extension': 'y', | 610 'extension': 'y', |
| 627 'outputs': [ | 611 'outputs': [ |
| 628 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', | 612 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', |
| 629 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' | 613 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).h' |
| 630 ], | 614 ], |
| 631 'action': [ | 615 'action': [ |
| 632 'python', | 616 'python', |
| 633 '../build/scripts/rule_bison.py', | 617 '../build/scripts/rule_bison.py', |
| 634 '<(RULE_INPUT_PATH)', | 618 '<(RULE_INPUT_PATH)', |
| 635 '<(SHARED_INTERMEDIATE_DIR)/blink', | 619 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 636 '<(bison_exe)', | 620 '<(bison_exe)', |
| 637 ], | 621 ], |
| 638 'msvs_cygwin_shell': 1, | 622 'msvs_cygwin_shell': 1, |
| 639 }, | 623 }, |
| 624 { | |
| 625 'rule_name': 'gperf', | |
| 626 'extension': 'gperf', | |
| 627 'outputs': [ | |
| 628 '<(SHARED_INTERMEDIATE_DIR)/blink/<(RULE_INPUT_ROOT).cpp', | |
| 629 ], | |
| 630 'inputs': [ | |
| 631 '../build/scripts/make-hash-tools.pl', | |
| 632 ], | |
| 633 'msvs_cygwin_shell': 0, | |
| 634 'action': [ | |
| 635 '<(perl_exe)', | |
| 636 '../build/scripts/make-hash-tools.pl', | |
| 637 '<(SHARED_INTERMEDIATE_DIR)/blink', | |
| 638 '<(RULE_INPUT_PATH)', | |
| 639 '<(gperf_exe)', | |
| 640 ], | |
| 641 }, | |
|
abarth-chromium
2013/10/25 15:24:18
This looks like a bad merge. You don't need to ad
rwlbuis
2013/10/25 15:44:28
Done.
| |
| 640 ], | 642 ], |
| 641 }, | 643 }, |
| 642 ], | 644 ], |
| 643 } | 645 } |
| OLD | NEW |