| 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 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 # ChromeOS-specific schemas. | 60 # ChromeOS-specific schemas. |
| 61 'chromeos_schema_files': [ | 61 'chromeos_schema_files': [ |
| 62 'diagnostics.idl', | 62 'diagnostics.idl', |
| 63 'networking_config.idl', | 63 'networking_config.idl', |
| 64 'vpn_provider.idl', | 64 'vpn_provider.idl', |
| 65 'webcam_private.idl', | 65 'webcam_private.idl', |
| 66 ], | 66 ], |
| 67 'non_compiled_schema_files': [ | 67 'non_compiled_schema_files': [ |
| 68 'web_request_internal.json', | 68 'web_request_internal.json', |
| 69 ], | 69 ], |
| 70 'non_compiled_bundle_schema_files': [ |
| 71 'declarative_web_request.json', |
| 72 'web_view_request.json', |
| 73 ], |
| 70 'conditions': [ | 74 'conditions': [ |
| 71 ['chromeos==1', { | 75 ['chromeos==1', { |
| 72 'schema_files': [ | 76 'schema_files': [ |
| 73 '<@(chromeos_schema_files)', | 77 '<@(chromeos_schema_files)', |
| 74 ], | 78 ], |
| 75 }] | 79 }] |
| 76 ], | 80 ], |
| 77 'cc_dir': 'extensions/common/api', | 81 'cc_dir': 'extensions/common/api', |
| 78 'root_namespace': 'extensions::api::%(namespace)s', | 82 'root_namespace': 'extensions::api::%(namespace)s', |
| 79 'bundle_name': '', | 83 'bundle_name': '', |
| 80 'impl_dir_': 'extensions/browser/api', | 84 'impl_dir_': 'extensions/browser/api', |
| 81 }, | 85 }, |
| 82 } | 86 } |
| OLD | NEW |