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/scripts/scripts.gypi', | 34 '../bindings/scripts/scripts.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 # GN version: //third_party/WebCore/Source/core:core_event_interfaces |
41 'target_name': 'core_event_interfaces', | 42 'target_name': 'core_event_interfaces', |
42 'type': 'none', | 43 'type': 'none', |
43 'actions': [ | 44 'actions': [ |
44 { | 45 { |
45 'action_name': 'make_core_event_interfaces', | 46 'action_name': 'make_core_event_interfaces', |
46 'variables': { | 47 'variables': { |
47 'event_idl_files': [ | 48 'event_idl_files': [ |
48 '<@(core_event_idl_files)', | 49 '<@(core_event_idl_files)', |
49 ], | 50 ], |
50 'event_idl_files_list': | 51 'event_idl_files_list': |
(...skipping 16 matching lines...) Expand all Loading... |
67 '<(event_idl_files_list)', | 68 '<(event_idl_files_list)', |
68 '--event-interfaces-file', | 69 '--event-interfaces-file', |
69 '<(blink_core_output_dir)/EventInterfaces.in', | 70 '<(blink_core_output_dir)/EventInterfaces.in', |
70 '--write-file-only-if-changed', | 71 '--write-file-only-if-changed', |
71 '<(write_file_only_if_changed)', | 72 '<(write_file_only_if_changed)', |
72 ], | 73 ], |
73 }, | 74 }, |
74 ], | 75 ], |
75 }, | 76 }, |
76 { | 77 { |
| 78 # GN version: //third_party/WebKit/Sources/core:generated_testing_idls |
77 'target_name': 'generated_testing_idls', | 79 'target_name': 'generated_testing_idls', |
78 'type': 'none', | 80 'type': 'none', |
79 'actions': [ | 81 'actions': [ |
80 { | 82 { |
81 'action_name': 'Settings', | 83 'action_name': 'Settings', |
82 'inputs': [ | 84 'inputs': [ |
83 '<@(scripts_for_in_files)', | 85 '<@(scripts_for_in_files)', |
84 '../build/scripts/make_settings.py', | 86 '../build/scripts/make_settings.py', |
85 '../build/scripts/templates/InternalSettingsGenerated.idl.tmpl', | 87 '../build/scripts/templates/InternalSettingsGenerated.idl.tmpl', |
86 '../build/scripts/templates/InternalSettingsGenerated.cpp.tmpl', | 88 '../build/scripts/templates/InternalSettingsGenerated.cpp.tmpl', |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'python', | 121 'python', |
120 '../build/scripts/make_internal_runtime_flags.py', | 122 '../build/scripts/make_internal_runtime_flags.py', |
121 '../platform/RuntimeEnabledFeatures.in', | 123 '../platform/RuntimeEnabledFeatures.in', |
122 '--output_dir', | 124 '--output_dir', |
123 '<(blink_core_output_dir)', | 125 '<(blink_core_output_dir)', |
124 ], | 126 ], |
125 }, | 127 }, |
126 ] | 128 ] |
127 }, | 129 }, |
128 { | 130 { |
| 131 # GN version: //third_party/WebKit/Source/core:make_core_generated |
129 'target_name': 'make_core_generated', | 132 'target_name': 'make_core_generated', |
130 'type': 'none', | 133 'type': 'none', |
131 'hard_dependency': 1, | 134 'hard_dependency': 1, |
132 'dependencies': [ | 135 'dependencies': [ |
133 'generated_testing_idls', | 136 'generated_testing_idls', |
134 'core_event_interfaces', | 137 'core_event_interfaces', |
135 '../config.gyp:config', | 138 '../config.gyp:config', |
136 ], | 139 ], |
137 'sources': [ | 140 'sources': [ |
138 # bison rule | 141 # bison rule |
(...skipping 677 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
816 '../build/scripts/rule_bison.py', | 819 '../build/scripts/rule_bison.py', |
817 '<(RULE_INPUT_PATH)', | 820 '<(RULE_INPUT_PATH)', |
818 '<(blink_core_output_dir)', | 821 '<(blink_core_output_dir)', |
819 '<(bison_exe)', | 822 '<(bison_exe)', |
820 ], | 823 ], |
821 }, | 824 }, |
822 ], | 825 ], |
823 }, | 826 }, |
824 ], | 827 ], |
825 } | 828 } |
OLD | NEW |