OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'sources': [ | 6 'sources': [ |
7 '<@(schema_files)', | 7 '<@(schema_files)', |
8 ], | 8 ], |
9 'variables': { | 9 'variables': { |
10 'main_schema_files': [ | 10 'main_schema_files': [ |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 'gcm.json', | 47 'gcm.json', |
48 'history.json', | 48 'history.json', |
49 'hotword_private.idl', | 49 'hotword_private.idl', |
50 'i18n.json', | 50 'i18n.json', |
51 'identity.idl', | 51 'identity.idl', |
52 'identity_private.idl', | 52 'identity_private.idl', |
53 'image_writer_private.idl', | 53 'image_writer_private.idl', |
54 'inline_install_private.idl', | 54 'inline_install_private.idl', |
55 'instance_id.json', | 55 'instance_id.json', |
56 'language_settings_private.idl', | 56 'language_settings_private.idl', |
57 'launcher_page.idl', | |
58 'manifest_types.json', | 57 'manifest_types.json', |
59 'media_galleries.idl', | 58 'media_galleries.idl', |
60 'metrics_private.json', | 59 'metrics_private.json', |
61 'notification_provider.idl', | 60 'notification_provider.idl', |
62 'notifications.idl', | 61 'notifications.idl', |
63 'omnibox.json', | 62 'omnibox.json', |
64 'page_capture.json', | 63 'page_capture.json', |
65 'passwords_private.idl', | 64 'passwords_private.idl', |
66 'permissions.json', | 65 'permissions.json', |
67 'preferences_private.json', | 66 'preferences_private.json', |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 'gcd_private.idl', | 134 'gcd_private.idl', |
136 'mdns.idl', | 135 'mdns.idl', |
137 ], | 136 ], |
138 | 137 |
139 'webrtc_schema_files': [ | 138 'webrtc_schema_files': [ |
140 'cast_streaming_receiver_session.idl', | 139 'cast_streaming_receiver_session.idl', |
141 'cast_streaming_rtp_stream.idl', | 140 'cast_streaming_rtp_stream.idl', |
142 'cast_streaming_session.idl', | 141 'cast_streaming_session.idl', |
143 'cast_streaming_udp_transport.idl', | 142 'cast_streaming_udp_transport.idl', |
144 ], | 143 ], |
145 | 144 'app_list_schema_files': [ |
| 145 # TODO(tapted): Move this into chromeos_schema_files. |
| 146 'launcher_page.idl', |
| 147 ], |
| 148 |
146 'task_manager_dependent_schema_files': [ | 149 'task_manager_dependent_schema_files': [ |
147 'processes.idl', | 150 'processes.idl', |
148 ], | 151 ], |
149 | 152 |
150 # Input IME schema. | 153 # Input IME schema. |
151 'input_ime_schema_file': [ | 154 'input_ime_schema_file': [ |
152 'input_ime.json', | 155 'input_ime.json', |
153 ], | 156 ], |
154 | 157 |
155 'non_compiled_schema_files': [ | 158 'non_compiled_schema_files': [ |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 ['enable_service_discovery==1', { | 196 ['enable_service_discovery==1', { |
194 'schema_files': [ | 197 'schema_files': [ |
195 '<@(service_discovery_schema_files)', | 198 '<@(service_discovery_schema_files)', |
196 ], | 199 ], |
197 }], | 200 }], |
198 ['enable_webrtc==1', { | 201 ['enable_webrtc==1', { |
199 'schema_files': [ | 202 'schema_files': [ |
200 '<@(webrtc_schema_files)', | 203 '<@(webrtc_schema_files)', |
201 ], | 204 ], |
202 }], | 205 }], |
| 206 ['enable_app_list==1', { |
| 207 'schema_files': [ |
| 208 '<@(app_list_schema_files)', |
| 209 ], |
| 210 }], |
203 ], | 211 ], |
204 'cc_dir': 'chrome/common/extensions/api', | 212 'cc_dir': 'chrome/common/extensions/api', |
205 'root_namespace': 'extensions::api::%(namespace)s', | 213 'root_namespace': 'extensions::api::%(namespace)s', |
206 'bundle_name': 'Chrome', | 214 'bundle_name': 'Chrome', |
207 'impl_dir_': 'chrome/browser/extensions/api', | 215 'impl_dir_': 'chrome/browser/extensions/api', |
208 }, | 216 }, |
209 } | 217 } |
OLD | NEW |