| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'hangouts_private.idl', | 48 'hangouts_private.idl', |
| 49 'history.json', | 49 'history.json', |
| 50 'hotword_private.idl', | 50 'hotword_private.idl', |
| 51 'i18n.json', | 51 'i18n.json', |
| 52 'identity.idl', | 52 'identity.idl', |
| 53 'identity_private.idl', | 53 'identity_private.idl', |
| 54 'image_writer_private.idl', | 54 'image_writer_private.idl', |
| 55 'inline_install_private.idl', | 55 'inline_install_private.idl', |
| 56 'instance_id.json', | 56 'instance_id.json', |
| 57 'language_settings_private.idl', | 57 'language_settings_private.idl', |
| 58 'launcher_page.idl', | |
| 59 'manifest_types.json', | 58 'manifest_types.json', |
| 60 'media_galleries.idl', | 59 'media_galleries.idl', |
| 61 'metrics_private.json', | 60 'metrics_private.json', |
| 62 'notification_provider.idl', | 61 'notification_provider.idl', |
| 63 'notifications.idl', | 62 'notifications.idl', |
| 64 'omnibox.json', | 63 'omnibox.json', |
| 65 'page_capture.json', | 64 'page_capture.json', |
| 66 'passwords_private.idl', | 65 'passwords_private.idl', |
| 67 'permissions.json', | 66 'permissions.json', |
| 68 'preferences_private.json', | 67 'preferences_private.json', |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 'gcd_private.idl', | 135 'gcd_private.idl', |
| 137 'mdns.idl', | 136 'mdns.idl', |
| 138 ], | 137 ], |
| 139 | 138 |
| 140 'webrtc_schema_files': [ | 139 'webrtc_schema_files': [ |
| 141 'cast_streaming_receiver_session.idl', | 140 'cast_streaming_receiver_session.idl', |
| 142 'cast_streaming_rtp_stream.idl', | 141 'cast_streaming_rtp_stream.idl', |
| 143 'cast_streaming_session.idl', | 142 'cast_streaming_session.idl', |
| 144 'cast_streaming_udp_transport.idl', | 143 'cast_streaming_udp_transport.idl', |
| 145 ], | 144 ], |
| 146 | 145 'app_list_schema_files': [ |
| 146 # TODO(tapted): Move this into chromeos_schema_files. |
| 147 'launcher_page.idl', |
| 148 ], |
| 149 |
| 147 'task_manager_dependent_schema_files': [ | 150 'task_manager_dependent_schema_files': [ |
| 148 'processes.idl', | 151 'processes.idl', |
| 149 ], | 152 ], |
| 150 | 153 |
| 151 # Input IME schema. | 154 # Input IME schema. |
| 152 'input_ime_schema_file': [ | 155 'input_ime_schema_file': [ |
| 153 'input_ime.json', | 156 'input_ime.json', |
| 154 ], | 157 ], |
| 155 | 158 |
| 156 'non_compiled_schema_files': [ | 159 'non_compiled_schema_files': [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 ['enable_service_discovery==1', { | 197 ['enable_service_discovery==1', { |
| 195 'schema_files': [ | 198 'schema_files': [ |
| 196 '<@(service_discovery_schema_files)', | 199 '<@(service_discovery_schema_files)', |
| 197 ], | 200 ], |
| 198 }], | 201 }], |
| 199 ['enable_webrtc==1', { | 202 ['enable_webrtc==1', { |
| 200 'schema_files': [ | 203 'schema_files': [ |
| 201 '<@(webrtc_schema_files)', | 204 '<@(webrtc_schema_files)', |
| 202 ], | 205 ], |
| 203 }], | 206 }], |
| 207 ['enable_app_list==1', { |
| 208 'schema_files': [ |
| 209 '<@(app_list_schema_files)', |
| 210 ], |
| 211 }], |
| 204 ], | 212 ], |
| 205 'cc_dir': 'chrome/common/extensions/api', | 213 'cc_dir': 'chrome/common/extensions/api', |
| 206 'root_namespace': 'extensions::api::%(namespace)s', | 214 'root_namespace': 'extensions::api::%(namespace)s', |
| 207 'bundle_name': 'Chrome', | 215 'bundle_name': 'Chrome', |
| 208 'impl_dir_': 'chrome/browser/extensions/api', | 216 'impl_dir_': 'chrome/browser/extensions/api', |
| 209 }, | 217 }, |
| 210 } | 218 } |
| OLD | NEW |