| 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 ], | 382 ], |
| 383 'action': [ | 383 'action': [ |
| 384 'python', | 384 'python', |
| 385 '../build/scripts/make_cssom_types.py', | 385 '../build/scripts/make_cssom_types.py', |
| 386 'css/CSSProperties.in', | 386 'css/CSSProperties.in', |
| 387 '--output_dir', | 387 '--output_dir', |
| 388 '<(blink_core_output_dir)', | 388 '<(blink_core_output_dir)', |
| 389 ], | 389 ], |
| 390 }, | 390 }, |
| 391 { | 391 { |
| 392 'action_name': 'CSSPropertyEquality', |
| 393 'inputs': [ |
| 394 '<@(css_properties_files)', |
| 395 '../build/scripts/make_css_property_equality.py', |
| 396 '../build/scripts/templates/CSSPropertyEquality.cpp.tmpl', |
| 397 '../build/scripts/templates/CSSPropertyEqualityCustom.h.tmpl', |
| 398 ], |
| 399 'outputs': [ |
| 400 '<(blink_core_output_dir)/CSSPropertyEquality.cpp', |
| 401 '<(blink_core_output_dir)/CSSPropertyEqualityCustom.h', |
| 402 ], |
| 403 'action': [ |
| 404 'python', |
| 405 '../build/scripts/make_css_property_equality.py', |
| 406 'css/CSSProperties.in', |
| 407 '--output_dir', |
| 408 '<(blink_core_output_dir)', |
| 409 ], |
| 410 }, |
| 411 { |
| 392 'action_name': 'CSSPropertyMetadata', | 412 'action_name': 'CSSPropertyMetadata', |
| 393 'inputs': [ | 413 'inputs': [ |
| 394 '<@(css_properties_files)', | 414 '<@(css_properties_files)', |
| 395 '../build/scripts/make_css_property_metadata.py', | 415 '../build/scripts/make_css_property_metadata.py', |
| 396 '../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl', | 416 '../build/scripts/templates/CSSPropertyMetadata.cpp.tmpl', |
| 397 ], | 417 ], |
| 398 'outputs': [ | 418 'outputs': [ |
| 399 '<(blink_core_output_dir)/CSSPropertyMetadata.cpp', | 419 '<(blink_core_output_dir)/CSSPropertyMetadata.cpp', |
| 400 ], | 420 ], |
| 401 'action': [ | 421 'action': [ |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 785 '../build/scripts/rule_bison.py', | 805 '../build/scripts/rule_bison.py', |
| 786 '<(RULE_INPUT_PATH)', | 806 '<(RULE_INPUT_PATH)', |
| 787 '<(blink_core_output_dir)', | 807 '<(blink_core_output_dir)', |
| 788 '<(bison_exe)', | 808 '<(bison_exe)', |
| 789 ], | 809 ], |
| 790 }, | 810 }, |
| 791 ], | 811 ], |
| 792 }, | 812 }, |
| 793 ], | 813 ], |
| 794 } | 814 } |
| OLD | NEW |