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', | 41 'target_name': 'core_event_interfaces', |
42 'type': 'none', | 42 'type': 'none', |
43 'actions': [ | 43 'actions': [ |
44 { | 44 { |
45 'action_name': 'event_interfaces', | 45 'action_name': 'make_core_event_interfaces', |
46 'variables': { | 46 'variables': { |
47 'event_idl_files': [ | 47 'event_idl_files': [ |
48 '<@(core_event_idl_files)', | 48 '<@(core_event_idl_files)', |
49 ], | 49 ], |
50 'event_idl_files_list': | 50 'event_idl_files_list': |
51 '<|(event_idl_files_list.tmp <@(event_idl_files))', | 51 '<|(event_idl_files_list.tmp <@(event_idl_files))', |
52 }, | 52 }, |
53 'inputs': [ | 53 'inputs': [ |
| 54 # FIXME: should be in build/scripts, not bindings/scripts |
54 '../bindings/scripts/generate_event_interfaces.py', | 55 '../bindings/scripts/generate_event_interfaces.py', |
55 '../bindings/scripts/utilities.py', | 56 '../bindings/scripts/utilities.py', |
56 '<(event_idl_files_list)', | 57 '<(event_idl_files_list)', |
57 '<@(event_idl_files)', | 58 '<@(event_idl_files)', |
58 ], | 59 ], |
59 'outputs': [ | 60 'outputs': [ |
60 '<(blink_output_dir)/EventInterfaces.in', | 61 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
61 ], | 62 ], |
62 'action': [ | 63 'action': [ |
63 'python', | 64 'python', |
64 '../bindings/scripts/generate_event_interfaces.py', | 65 '../bindings/scripts/generate_event_interfaces.py', |
65 '--event-idl-files-list', | 66 '--event-idl-files-list', |
66 '<(event_idl_files_list)', | 67 '<(event_idl_files_list)', |
67 '--event-interfaces-file', | 68 '--event-interfaces-file', |
68 '<(blink_output_dir)/EventInterfaces.in', | 69 '<(SHARED_INTERMEDIATE_DIR)/blink/EventInterfaces.in', |
69 '--write-file-only-if-changed', | 70 '--write-file-only-if-changed', |
70 '<(write_file_only_if_changed)', | 71 '<(write_file_only_if_changed)', |
71 ], | 72 ], |
72 }, | 73 }, |
73 ], | 74 ], |
74 }, | 75 }, |
75 { | 76 { |
76 'target_name': 'generated_testing_idls', | 77 'target_name': 'generated_testing_idls', |
77 'type': 'none', | 78 'type': 'none', |
78 'actions': [ | 79 'actions': [ |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 ], | 124 ], |
124 }, | 125 }, |
125 ] | 126 ] |
126 }, | 127 }, |
127 { | 128 { |
128 'target_name': 'make_core_generated', | 129 'target_name': 'make_core_generated', |
129 'type': 'none', | 130 'type': 'none', |
130 'hard_dependency': 1, | 131 'hard_dependency': 1, |
131 'dependencies': [ | 132 'dependencies': [ |
132 'generated_testing_idls', | 133 'generated_testing_idls', |
133 'core_bindings_generated', | 134 'core_event_interfaces', |
134 '../config.gyp:config', | 135 '../config.gyp:config', |
135 ], | 136 ], |
136 'sources': [ | 137 'sources': [ |
137 # bison rule | 138 # bison rule |
138 'css/CSSGrammar.y', | 139 'css/CSSGrammar.y', |
139 'xml/XPathGrammar.y', | 140 'xml/XPathGrammar.y', |
140 ], | 141 ], |
141 'actions': [ | 142 'actions': [ |
142 { | 143 { |
143 'action_name': 'generateXMLViewerCSS', | 144 'action_name': 'generateXMLViewerCSS', |
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 '../build/scripts/rule_bison.py', | 816 '../build/scripts/rule_bison.py', |
816 '<(RULE_INPUT_PATH)', | 817 '<(RULE_INPUT_PATH)', |
817 '<(SHARED_INTERMEDIATE_DIR)/blink', | 818 '<(SHARED_INTERMEDIATE_DIR)/blink', |
818 '<(bison_exe)', | 819 '<(bison_exe)', |
819 ], | 820 ], |
820 }, | 821 }, |
821 ], | 822 ], |
822 }, | 823 }, |
823 ], | 824 ], |
824 } | 825 } |
OLD | NEW |