| 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 13 matching lines...) Expand all Loading... |
| 24 "extension_view_internal.json", | 24 "extension_view_internal.json", |
| 25 "extension_types.json", | 25 "extension_types.json", |
| 26 "guest_view_internal.json", | 26 "guest_view_internal.json", |
| 27 "management.json", | 27 "management.json", |
| 28 "hid.idl", | 28 "hid.idl", |
| 29 "idle.json", | 29 "idle.json", |
| 30 "metrics_private.json", | 30 "metrics_private.json", |
| 31 "mime_handler_private.idl", | 31 "mime_handler_private.idl", |
| 32 "mime_handler_view_guest_internal.json", | 32 "mime_handler_view_guest_internal.json", |
| 33 "mojo_private.idl", | 33 "mojo_private.idl", |
| 34 "networking_cast.idl", |
| 34 "networking_private.idl", | 35 "networking_private.idl", |
| 35 "power.idl", | 36 "power.idl", |
| 36 "printer_provider.idl", | 37 "printer_provider.idl", |
| 37 "printer_provider_internal.idl", | 38 "printer_provider_internal.idl", |
| 38 "runtime.json", | 39 "runtime.json", |
| 39 "serial.idl", | 40 "serial.idl", |
| 40 "socket.idl", | 41 "socket.idl", |
| 41 "sockets_tcp.idl", | 42 "sockets_tcp.idl", |
| 42 "sockets_tcp_server.idl", | 43 "sockets_tcp_server.idl", |
| 43 "sockets_udp.idl", | 44 "sockets_udp.idl", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 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 |