| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 'action': [ | 247 'action': [ |
| 248 'python', | 248 'python', |
| 249 '../build/scripts/make_names.py', | 249 '../build/scripts/make_names.py', |
| 250 '<@(in_files)', | 250 '<@(in_files)', |
| 251 '--output_dir', | 251 '--output_dir', |
| 252 '<(SHARED_INTERMEDIATE_DIR)/blink', | 252 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 253 '--defines', '<(feature_defines)', | 253 '--defines', '<(feature_defines)', |
| 254 ], | 254 ], |
| 255 }, | 255 }, |
| 256 { | 256 { |
| 257 'action_name': 'MediaQueryTokenizerCodepoints', |
| 258 'inputs': [ |
| 259 '../build/scripts/make_mediaquery_tokenizer_codepoints.py', |
| 260 ], |
| 261 'outputs': [ |
| 262 '<(SHARED_INTERMEDIATE_DIR)/blink/MediaQueryTokenizerCodepoints.cpp'
, |
| 263 ], |
| 264 'action': [ |
| 265 'python', |
| 266 '../build/scripts/make_mediaquery_tokenizer_codepoints.py', |
| 267 '--output_dir', |
| 268 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 269 '--defines', '<(feature_defines)', |
| 270 ], |
| 271 }, |
| 272 { |
| 257 'action_name': 'StylePropertyShorthand', | 273 'action_name': 'StylePropertyShorthand', |
| 258 'inputs': [ | 274 'inputs': [ |
| 259 '<@(scripts_for_in_files)', | 275 '<@(scripts_for_in_files)', |
| 260 '../build/scripts/make_style_shorthands.py', | 276 '../build/scripts/make_style_shorthands.py', |
| 261 'css/CSSShorthands.in', | 277 'css/CSSShorthands.in', |
| 262 '../build/scripts/templates/StylePropertyShorthand.h.tmpl', | 278 '../build/scripts/templates/StylePropertyShorthand.h.tmpl', |
| 263 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl', | 279 '../build/scripts/templates/StylePropertyShorthand.cpp.tmpl', |
| 264 ], | 280 ], |
| 265 'outputs': [ | 281 'outputs': [ |
| 266 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp', | 282 '<(SHARED_INTERMEDIATE_DIR)/blink/StylePropertyShorthand.cpp', |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 744 '../build/scripts/rule_bison.py', | 760 '../build/scripts/rule_bison.py', |
| 745 '<(RULE_INPUT_PATH)', | 761 '<(RULE_INPUT_PATH)', |
| 746 '<(SHARED_INTERMEDIATE_DIR)/blink', | 762 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 747 '<(bison_exe)', | 763 '<(bison_exe)', |
| 748 ], | 764 ], |
| 749 }, | 765 }, |
| 750 ], | 766 ], |
| 751 }, | 767 }, |
| 752 ], | 768 ], |
| 753 } | 769 } |
| OLD | NEW |