| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 # Disable schema compiler to generate model extension API code. | 164 # Disable schema compiler to generate model extension API code. |
| 165 # Only register the extension functions in extension system. | 165 # Only register the extension functions in extension system. |
| 166 'conditions': [ | 166 'conditions': [ |
| 167 ['chromeos==1', { | 167 ['chromeos==1', { |
| 168 'schema_files': [ | 168 'schema_files': [ |
| 169 '<@(chromeos_schema_files)', | 169 '<@(chromeos_schema_files)', |
| 170 ], | 170 ], |
| 171 'non_compiled_schema_files': [ | 171 'non_compiled_schema_files': [ |
| 172 '<@(chromeos_non_compiled_schema_files)', | 172 '<@(chromeos_non_compiled_schema_files)', |
| 173 ], | 173 ], |
| 174 }], | 174 }, { # chromeos==0 |
| 175 ['OS=="linux" or OS=="win"', { | 175 'conditions': [ |
| 176 'schema_files': [ | 176 ['OS=="linux" or OS=="win"', { |
| 177 » 'input_ime.json', | 177 'schema_files': [ |
| 178 » ], | 178 'input_ime.json', |
| 179 ], |
| 180 }], |
| 181 ], |
| 179 }], | 182 }], |
| 180 ['enable_webrtc==1', { | 183 ['enable_webrtc==1', { |
| 181 'schema_files': [ | 184 'schema_files': [ |
| 182 '<@(webrtc_schema_files)', | 185 '<@(webrtc_schema_files)', |
| 183 ], | 186 ], |
| 184 }], | 187 }], |
| 185 ['OS!="android"', { | 188 ['OS!="android"', { |
| 186 'schema_files': [ | 189 'schema_files': [ |
| 187 '<@(non_android_schema_files)', | 190 '<@(non_android_schema_files)', |
| 188 ], | 191 ], |
| 189 }], | 192 }], |
| 190 ], | 193 ], |
| 191 'cc_dir': 'chrome/common/extensions/api', | 194 'cc_dir': 'chrome/common/extensions/api', |
| 192 'root_namespace': 'extensions::api::%(namespace)s', | 195 'root_namespace': 'extensions::api::%(namespace)s', |
| 193 'bundle_name': 'Chrome', | 196 'bundle_name': 'Chrome', |
| 194 'impl_dir_': 'chrome/browser/extensions/api', | 197 'impl_dir_': 'chrome/browser/extensions/api', |
| 195 }, | 198 }, |
| 196 } | 199 } |
| OLD | NEW |