| 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 20 matching lines...) Expand all Loading... |
| 31 { | 31 { |
| 32 'includes': [ | 32 'includes': [ |
| 33 'core.gypi', | 33 'core.gypi', |
| 34 '../bindings/bindings.gypi', | 34 '../bindings/bindings.gypi', |
| 35 '../build/features.gypi', | 35 '../build/features.gypi', |
| 36 '../build/scripts/scripts.gypi', | 36 '../build/scripts/scripts.gypi', |
| 37 ], | 37 ], |
| 38 | 38 |
| 39 'targets': [ | 39 'targets': [ |
| 40 { | 40 { |
| 41 'target_name': 'core_bindings_generated', |
| 42 'type': 'none', |
| 43 'actions': [ |
| 44 { |
| 45 'action_name': 'event_interfaces', |
| 46 'variables': { |
| 47 'event_idl_files': [ |
| 48 '<@(core_event_idl_files)', |
| 49 ], |
| 50 'event_idl_files_list': |
| 51 '<|(event_idl_files_list.tmp <@(event_idl_files))', |
| 52 }, |
| 53 'inputs': [ |
| 54 '../bindings/scripts/generate_event_interfaces.py', |
| 55 '../bindings/scripts/utilities.py', |
| 56 '<(event_idl_files_list)', |
| 57 '<@(event_idl_files)', |
| 58 ], |
| 59 'outputs': [ |
| 60 '<(blink_output_dir)/EventInterfaces.in', |
| 61 ], |
| 62 'action': [ |
| 63 'python', |
| 64 '../bindings/scripts/generate_event_interfaces.py', |
| 65 '--event-idl-files-list', |
| 66 '<(event_idl_files_list)', |
| 67 '--event-interfaces-file', |
| 68 '<(blink_output_dir)/EventInterfaces.in', |
| 69 '--write-file-only-if-changed', |
| 70 '<(write_file_only_if_changed)', |
| 71 ], |
| 72 }, |
| 73 ], |
| 74 }, |
| 75 { |
| 41 'target_name': 'generated_testing_idls', | 76 'target_name': 'generated_testing_idls', |
| 42 'type': 'none', | 77 'type': 'none', |
| 43 'actions': [ | 78 'actions': [ |
| 44 { | 79 { |
| 45 'action_name': 'Settings', | 80 'action_name': 'Settings', |
| 46 'inputs': [ | 81 'inputs': [ |
| 47 '<@(scripts_for_in_files)', | 82 '<@(scripts_for_in_files)', |
| 48 '../build/scripts/make_settings.py', | 83 '../build/scripts/make_settings.py', |
| 49 '../build/scripts/templates/InternalSettingsGenerated.idl.tmpl', | 84 '../build/scripts/templates/InternalSettingsGenerated.idl.tmpl', |
| 50 '../build/scripts/templates/InternalSettingsGenerated.cpp.tmpl', | 85 '../build/scripts/templates/InternalSettingsGenerated.cpp.tmpl', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 ], | 123 ], |
| 89 }, | 124 }, |
| 90 ] | 125 ] |
| 91 }, | 126 }, |
| 92 { | 127 { |
| 93 'target_name': 'make_core_generated', | 128 'target_name': 'make_core_generated', |
| 94 'type': 'none', | 129 'type': 'none', |
| 95 'hard_dependency': 1, | 130 'hard_dependency': 1, |
| 96 'dependencies': [ | 131 'dependencies': [ |
| 97 'generated_testing_idls', | 132 'generated_testing_idls', |
| 98 '../bindings/core_bindings_generated.gyp:core_bindings_generated', | 133 'core_bindings_generated', |
| 99 '../config.gyp:config', | 134 '../config.gyp:config', |
| 100 ], | 135 ], |
| 101 'sources': [ | 136 'sources': [ |
| 102 # bison rule | 137 # bison rule |
| 103 'css/CSSGrammar.y', | 138 'css/CSSGrammar.y', |
| 104 'xml/XPathGrammar.y', | 139 'xml/XPathGrammar.y', |
| 105 ], | 140 ], |
| 106 'actions': [ | 141 'actions': [ |
| 107 { | 142 { |
| 108 'action_name': 'generateXMLViewerCSS', | 143 'action_name': 'generateXMLViewerCSS', |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 '../build/scripts/rule_bison.py', | 814 '../build/scripts/rule_bison.py', |
| 780 '<(RULE_INPUT_PATH)', | 815 '<(RULE_INPUT_PATH)', |
| 781 '<(SHARED_INTERMEDIATE_DIR)/blink', | 816 '<(SHARED_INTERMEDIATE_DIR)/blink', |
| 782 '<(bison_exe)', | 817 '<(bison_exe)', |
| 783 ], | 818 ], |
| 784 }, | 819 }, |
| 785 ], | 820 ], |
| 786 }, | 821 }, |
| 787 ], | 822 ], |
| 788 } | 823 } |
| OLD | NEW |