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 # These duplicate other lists and are the only ones used on Android. They | 10 # These duplicate other lists and are the only ones used on Android. They |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
135 'diagnostics.idl', | 135 'diagnostics.idl', |
136 'enterprise_platform_keys.idl', | 136 'enterprise_platform_keys.idl', |
137 'enterprise_platform_keys_internal.idl', | 137 'enterprise_platform_keys_internal.idl', |
138 'file_browser_handler_internal.json', | 138 'file_browser_handler_internal.json', |
139 'first_run_private.json', | 139 'first_run_private.json', |
140 'log_private.idl', | 140 'log_private.idl', |
141 'wallpaper.json', | 141 'wallpaper.json', |
142 'wallpaper_private.json', | 142 'wallpaper_private.json', |
143 'webcam_private.idl', | 143 'webcam_private.idl', |
144 ], | 144 ], |
145 'chromeos_branded_schema_files': [ | |
146 'ledger/ledger.idl', | |
147 ], | |
148 | 145 |
149 'webrtc_schema_files': [ | 146 'webrtc_schema_files': [ |
150 'cast_streaming_rtp_stream.idl', | 147 'cast_streaming_rtp_stream.idl', |
151 'cast_streaming_session.idl', | 148 'cast_streaming_session.idl', |
152 'cast_streaming_udp_transport.idl', | 149 'cast_streaming_udp_transport.idl', |
153 ], | 150 ], |
154 | 151 |
155 'chromium_code': 1, | 152 'chromium_code': 1, |
156 # Disable schema compiler to generate model extension API code. | 153 # Disable schema compiler to generate model extension API code. |
157 # Only register the extension functions in extension system. | 154 # Only register the extension functions in extension system. |
(...skipping 16 matching lines...) Expand all Loading... |
174 ['chromeos==1', { | 171 ['chromeos==1', { |
175 'schema_files': [ | 172 'schema_files': [ |
176 '<@(chromeos_schema_files)', | 173 '<@(chromeos_schema_files)', |
177 ], | 174 ], |
178 }], | 175 }], |
179 ['enable_extensions==1 and enable_webrtc==1', { | 176 ['enable_extensions==1 and enable_webrtc==1', { |
180 'schema_files': [ | 177 'schema_files': [ |
181 '<@(webrtc_schema_files)', | 178 '<@(webrtc_schema_files)', |
182 ], | 179 ], |
183 }], | 180 }], |
184 ['branding=="Chrome" and chromeos==1', { | |
185 'schema_files': [ | |
186 '<@(chromeos_branded_schema_files)', | |
187 ], | |
188 }], | |
189 ], | 181 ], |
190 'cc_dir': 'chrome/common/extensions/api', | 182 'cc_dir': 'chrome/common/extensions/api', |
191 'root_namespace': 'extensions::api::%(namespace)s', | 183 'root_namespace': 'extensions::api::%(namespace)s', |
192 'impl_dir_': 'chrome/browser/extensions/api', | 184 'impl_dir_': 'chrome/browser/extensions/api', |
193 }, | 185 }, |
194 } | 186 } |
OLD | NEW |