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 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
581 '../build/scripts/make_token_matcher.py', | 581 '../build/scripts/make_token_matcher.py', |
582 '../core/css/CSSTokenizer-in.cpp', | 582 '../core/css/CSSTokenizer-in.cpp', |
583 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSTokenizer.cpp', | 583 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSTokenizer.cpp', |
584 ], | 584 ], |
585 }, | 585 }, |
586 { | 586 { |
587 'action_name': 'MakeParser', | 587 'action_name': 'MakeParser', |
588 'inputs': [ | 588 'inputs': [ |
589 '<@(scripts_for_in_files)', | 589 '<@(scripts_for_in_files)', |
590 '../build/scripts/make_token_matcher.py', | 590 '../build/scripts/make_token_matcher.py', |
591 '../core/css/CSSParser-in.cpp', | 591 '../core/css/parser/BisonCSSParser-in.cpp', |
592 ], | 592 ], |
593 'outputs': [ | 593 'outputs': [ |
594 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSParser.cpp', | 594 '<(SHARED_INTERMEDIATE_DIR)/blink/BisonCSSParser.cpp', |
595 ], | 595 ], |
596 'action': [ | 596 'action': [ |
597 'python', | 597 'python', |
598 '../build/scripts/make_token_matcher.py', | 598 '../build/scripts/make_token_matcher.py', |
599 '../core/css/CSSParser-in.cpp', | 599 '../core/css/parser/BisonCSSParser-in.cpp', |
600 '<(SHARED_INTERMEDIATE_DIR)/blink/CSSParser.cpp', | 600 '<(SHARED_INTERMEDIATE_DIR)/blink/BisonCSSParser.cpp', |
601 ], | 601 ], |
602 }, | 602 }, |
603 { | 603 { |
604 'action_name': 'MakeTokenMatcherForViewport', | 604 'action_name': 'MakeTokenMatcherForViewport', |
605 'inputs': [ | 605 'inputs': [ |
606 '<@(scripts_for_in_files)', | 606 '<@(scripts_for_in_files)', |
607 '../build/scripts/make_token_matcher.py', | 607 '../build/scripts/make_token_matcher.py', |
608 '../core/html/HTMLMetaElement-in.cpp', | 608 '../core/html/HTMLMetaElement-in.cpp', |
609 ], | 609 ], |
610 'outputs': [ | 610 'outputs': [ |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 '<(RULE_INPUT_PATH)', | 653 '<(RULE_INPUT_PATH)', |
654 '<(SHARED_INTERMEDIATE_DIR)/blink', | 654 '<(SHARED_INTERMEDIATE_DIR)/blink', |
655 '<(bison_exe)', | 655 '<(bison_exe)', |
656 ], | 656 ], |
657 'msvs_cygwin_shell': 1, | 657 'msvs_cygwin_shell': 1, |
658 }, | 658 }, |
659 ], | 659 ], |
660 }, | 660 }, |
661 ], | 661 ], |
662 } | 662 } |
OLD | NEW |