| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 'python', | 209 'python', |
| 210 '../scripts/make_css_property_names.py', | 210 '../scripts/make_css_property_names.py', |
| 211 '<@(in_files)', | 211 '<@(in_files)', |
| 212 '--output_dir', | 212 '--output_dir', |
| 213 '<(SHARED_INTERMEDIATE_DIR)/webkit/', | 213 '<(SHARED_INTERMEDIATE_DIR)/webkit/', |
| 214 '--defines', '<(feature_defines)', | 214 '--defines', '<(feature_defines)', |
| 215 ], | 215 ], |
| 216 'msvs_cygwin_shell': 1, | 216 'msvs_cygwin_shell': 1, |
| 217 }, | 217 }, |
| 218 { | 218 { |
| 219 'action_name': 'StyleBuilder', |
| 220 'inputs': [ |
| 221 '<@(scripts_for_in_files)', |
| 222 '../scripts/make_style_builder.py', |
| 223 '../css/CSSProperties.in', |
| 224 '../scripts/templates/StyleBuilder.cpp.tmpl', |
| 225 ], |
| 226 'outputs': [ |
| 227 '<(SHARED_INTERMEDIATE_DIR)/webkit/StyleBuilder.cpp', |
| 228 ], |
| 229 'action': [ |
| 230 'python', |
| 231 '../scripts/make_style_builder.py', |
| 232 '../css/CSSProperties.in', |
| 233 '<(SHARED_INTERMEDIATE_DIR)/webkit/', |
| 234 ], |
| 235 }, |
| 236 { |
| 219 'action_name': 'CSSValueKeywords', | 237 'action_name': 'CSSValueKeywords', |
| 220 'inputs': [ | 238 'inputs': [ |
| 221 '../css/makevalues.pl', | 239 '../css/makevalues.pl', |
| 222 '../css/CSSValueKeywords.in', | 240 '../css/CSSValueKeywords.in', |
| 223 '../css/SVGCSSValueKeywords.in', | 241 '../css/SVGCSSValueKeywords.in', |
| 224 ], | 242 ], |
| 225 'outputs': [ | 243 'outputs': [ |
| 226 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.cpp', | 244 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.cpp', |
| 227 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.h', | 245 '<(SHARED_INTERMEDIATE_DIR)/webkit/CSSValueKeywords.h', |
| 228 ], | 246 ], |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 '../scripts/make-hash-tools.pl', | 649 '../scripts/make-hash-tools.pl', |
| 632 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 650 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 633 '<(RULE_INPUT_PATH)', | 651 '<(RULE_INPUT_PATH)', |
| 634 '<(gperf_exe)', | 652 '<(gperf_exe)', |
| 635 ], | 653 ], |
| 636 }, | 654 }, |
| 637 ], | 655 ], |
| 638 }, | 656 }, |
| 639 ], | 657 ], |
| 640 } | 658 } |
| OLD | NEW |