| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 extensions_api_schema_files_ = [ | 5 extensions_api_schema_files_ = [ |
| 6 "alarms.idl", | 6 "alarms.idl", |
| 7 "app_current_window_internal.idl", | 7 "app_current_window_internal.idl", |
| 8 "app_runtime.idl", | 8 "app_runtime.idl", |
| 9 "app_view_guest_internal.json", | 9 "app_view_guest_internal.json", |
| 10 "app_window.idl", | 10 "app_window.idl", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "usb.idl", | 51 "usb.idl", |
| 52 "virtual_keyboard.idl", | 52 "virtual_keyboard.idl", |
| 53 "virtual_keyboard_private.json", | 53 "virtual_keyboard_private.json", |
| 54 "web_request.json", | 54 "web_request.json", |
| 55 "web_view_internal.json", | 55 "web_view_internal.json", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 if (is_chromeos) { | 58 if (is_chromeos) { |
| 59 extensions_api_schema_files_ += [ | 59 extensions_api_schema_files_ += [ |
| 60 "diagnostics.idl", | 60 "diagnostics.idl", |
| 61 "media_perception_private.idl", |
| 61 "networking_config.idl", | 62 "networking_config.idl", |
| 62 "vpn_provider.idl", | 63 "vpn_provider.idl", |
| 63 "webcam_private.idl", | 64 "webcam_private.idl", |
| 64 ] | 65 ] |
| 65 } | 66 } |
| 66 | 67 |
| 67 extensions_api_schema_files = | 68 extensions_api_schema_files = |
| 68 get_path_info(extensions_api_schema_files_, "abspath") | 69 get_path_info(extensions_api_schema_files_, "abspath") |
| 69 | 70 |
| 70 extensions_api_uncompiled_sources = | 71 extensions_api_uncompiled_sources = |
| 71 get_path_info([ "web_request_internal.json" ], "abspath") | 72 get_path_info([ "web_request_internal.json" ], "abspath") |
| 72 | 73 |
| 73 extensions_api_uncompiled_bundle_schema_sources = | 74 extensions_api_uncompiled_bundle_schema_sources = |
| 74 get_path_info([ | 75 get_path_info([ |
| 75 "declarative_web_request.json", | 76 "declarative_web_request.json", |
| 76 "web_view_request.json", | 77 "web_view_request.json", |
| 77 ], | 78 ], |
| 78 "abspath") | 79 "abspath") |
| 79 | 80 |
| 80 extensions_api_root_namespace = "extensions::api::%(namespace)s" | 81 extensions_api_root_namespace = "extensions::api::%(namespace)s" |
| OLD | NEW |