| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 'inputs': [ | 400 'inputs': [ |
| 401 '<@(make_element_factory_files)', | 401 '<@(make_element_factory_files)', |
| 402 'html/HTMLTagNames.in', | 402 'html/HTMLTagNames.in', |
| 403 'html/HTMLAttributeNames.in', | 403 'html/HTMLAttributeNames.in', |
| 404 ], | 404 ], |
| 405 'outputs': [ | 405 'outputs': [ |
| 406 '<(blink_core_output_dir)/HTMLElementFactory.cpp', | 406 '<(blink_core_output_dir)/HTMLElementFactory.cpp', |
| 407 '<(blink_core_output_dir)/HTMLElementFactory.h', | 407 '<(blink_core_output_dir)/HTMLElementFactory.h', |
| 408 '<(blink_core_output_dir)/HTMLNames.cpp', | 408 '<(blink_core_output_dir)/HTMLNames.cpp', |
| 409 '<(blink_core_output_dir)/HTMLNames.h', | 409 '<(blink_core_output_dir)/HTMLNames.h', |
| 410 '<(blink_core_output_dir)/V8HTMLElementWrapperFactory.cpp', | |
| 411 '<(blink_core_output_dir)/V8HTMLElementWrapperFactory.h', | |
| 412 ], | 410 ], |
| 413 'action': [ | 411 'action': [ |
| 414 'python', | 412 'python', |
| 415 '../build/scripts/make_element_factory.py', | 413 '../build/scripts/make_element_factory.py', |
| 416 'html/HTMLTagNames.in', | 414 'html/HTMLTagNames.in', |
| 417 'html/HTMLAttributeNames.in', | 415 'html/HTMLAttributeNames.in', |
| 418 '--output_dir', | 416 '--output_dir', |
| 419 '<(blink_core_output_dir)', | 417 '<(blink_core_output_dir)', |
| 420 ], | 418 ], |
| 421 }, | 419 }, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 441 'inputs': [ | 439 'inputs': [ |
| 442 '<@(make_element_factory_files)', | 440 '<@(make_element_factory_files)', |
| 443 'svg/SVGTagNames.in', | 441 'svg/SVGTagNames.in', |
| 444 'svg/SVGAttributeNames.in', | 442 'svg/SVGAttributeNames.in', |
| 445 ], | 443 ], |
| 446 'outputs': [ | 444 'outputs': [ |
| 447 '<(blink_core_output_dir)/SVGElementFactory.cpp', | 445 '<(blink_core_output_dir)/SVGElementFactory.cpp', |
| 448 '<(blink_core_output_dir)/SVGElementFactory.h', | 446 '<(blink_core_output_dir)/SVGElementFactory.h', |
| 449 '<(blink_core_output_dir)/SVGNames.cpp', | 447 '<(blink_core_output_dir)/SVGNames.cpp', |
| 450 '<(blink_core_output_dir)/SVGNames.h', | 448 '<(blink_core_output_dir)/SVGNames.h', |
| 451 '<(blink_core_output_dir)/V8SVGElementWrapperFactory.cpp', | |
| 452 '<(blink_core_output_dir)/V8SVGElementWrapperFactory.h', | |
| 453 ], | 449 ], |
| 454 'action': [ | 450 'action': [ |
| 455 'python', | 451 'python', |
| 456 '../build/scripts/make_element_factory.py', | 452 '../build/scripts/make_element_factory.py', |
| 457 'svg/SVGTagNames.in', | 453 'svg/SVGTagNames.in', |
| 458 'svg/SVGAttributeNames.in', | 454 'svg/SVGAttributeNames.in', |
| 459 '--output_dir', | 455 '--output_dir', |
| 460 '<(blink_core_output_dir)', | 456 '<(blink_core_output_dir)', |
| 461 ], | 457 ], |
| 462 }, | 458 }, |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 '../build/scripts/rule_bison.py', | 826 '../build/scripts/rule_bison.py', |
| 831 '<(RULE_INPUT_PATH)', | 827 '<(RULE_INPUT_PATH)', |
| 832 '<(blink_core_output_dir)', | 828 '<(blink_core_output_dir)', |
| 833 '<(bison_exe)', | 829 '<(bison_exe)', |
| 834 ], | 830 ], |
| 835 }, | 831 }, |
| 836 ], | 832 ], |
| 837 }, | 833 }, |
| 838 ], | 834 ], |
| 839 } | 835 } |
| OLD | NEW |