| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 ], | 341 ], |
| 342 'action': [ | 342 'action': [ |
| 343 'python', | 343 'python', |
| 344 '../build/scripts/make_element_factory.py', | 344 '../build/scripts/make_element_factory.py', |
| 345 'html/HTMLTagNames.in', | 345 'html/HTMLTagNames.in', |
| 346 'html/HTMLAttributeNames.in', | 346 'html/HTMLAttributeNames.in', |
| 347 '--output_dir', | 347 '--output_dir', |
| 348 '<(SHARED_INTERMEDIATE_DIR)/blink', | 348 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 349 ], | 349 ], |
| 350 }, | 350 }, |
| 351 { | 351 { |
| 352 'action_name': 'HTMLElementTypeHelpers', | 352 'action_name': 'HTMLElementTypeHelpers', |
| 353 'inputs': [ | 353 'inputs': [ |
| 354 '<@(make_element_type_helpers_files)', | 354 '<@(make_element_type_helpers_files)', |
| 355 'html/HTMLTagNames.in', | 355 'html/HTMLTagNames.in', |
| 356 ], | 356 ], |
| 357 'outputs': [ | 357 'outputs': [ |
| 358 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLElementTypeHelpers.h', | 358 '<(SHARED_INTERMEDIATE_DIR)/blink/HTMLElementTypeHelpers.h', |
| 359 ], | 359 ], |
| 360 'action': [ | 360 'action': [ |
| 361 'python', | 361 'python', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 383 'action': [ | 383 'action': [ |
| 384 'python', | 384 'python', |
| 385 '../build/scripts/make_element_factory.py', | 385 '../build/scripts/make_element_factory.py', |
| 386 'svg/SVGTagNames.in', | 386 'svg/SVGTagNames.in', |
| 387 'svg/SVGAttributeNames.in', | 387 'svg/SVGAttributeNames.in', |
| 388 '--output_dir', | 388 '--output_dir', |
| 389 '<(SHARED_INTERMEDIATE_DIR)/blink', | 389 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 390 ], | 390 ], |
| 391 }, | 391 }, |
| 392 { | 392 { |
| 393 'action_name': 'SVGElementTypeHelpers', |
| 394 'inputs': [ |
| 395 '<@(make_element_type_helpers_files)', |
| 396 'svg/SVGTagNames.in', |
| 397 ], |
| 398 'outputs': [ |
| 399 '<(SHARED_INTERMEDIATE_DIR)/blink/SVGElementTypeHelpers.h', |
| 400 ], |
| 401 'action': [ |
| 402 'python', |
| 403 '../build/scripts/make_element_type_helpers.py', |
| 404 'svg/SVGTagNames.in', |
| 405 '--output_dir', |
| 406 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 407 ], |
| 408 }, |
| 409 { |
| 393 'action_name': 'EventFactory', | 410 'action_name': 'EventFactory', |
| 394 'inputs': [ | 411 'inputs': [ |
| 395 '<@(make_event_factory_files)', | 412 '<@(make_event_factory_files)', |
| 396 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', | 413 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
| 397 'events/EventAliases.in', | 414 'events/EventAliases.in', |
| 398 ], | 415 ], |
| 399 'outputs': [ | 416 'outputs': [ |
| 400 '<(SHARED_INTERMEDIATE_DIR)/blink/Event.cpp', | 417 '<(SHARED_INTERMEDIATE_DIR)/blink/Event.cpp', |
| 401 '<(SHARED_INTERMEDIATE_DIR)/blink/EventHeaders.h', | 418 '<(SHARED_INTERMEDIATE_DIR)/blink/EventHeaders.h', |
| 402 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.h', | 419 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.h', |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 '../build/scripts/rule_bison.py', | 743 '../build/scripts/rule_bison.py', |
| 727 '<(RULE_INPUT_PATH)', | 744 '<(RULE_INPUT_PATH)', |
| 728 '<(SHARED_INTERMEDIATE_DIR)/blink', | 745 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 729 '<(bison_exe)', | 746 '<(bison_exe)', |
| 730 ], | 747 ], |
| 731 }, | 748 }, |
| 732 ], | 749 ], |
| 733 }, | 750 }, |
| 734 ], | 751 ], |
| 735 } | 752 } |
| OLD | NEW |